Changes to logout prosess and login state storing, logout bug fix
[situare] / src / engine / contactmanagerprivatestub.cpp
1 #include <QDebug>
2
3 #include "contactmanagerprivatestub.h"
4
5 ContactManagerPrivate::ContactManagerPrivate(QObject *parent) :
6     QObject(parent)
7 {
8     qDebug() << __PRETTY_FUNCTION__;
9 }
10
11 void ContactManagerPrivate::requestContactGuids()
12 {
13     qDebug() << __PRETTY_FUNCTION__;
14 }
15
16 QString ContactManagerPrivate::contactGuid(const QString &facebookId) const
17 {
18     qDebug() << __PRETTY_FUNCTION__;
19
20     Q_UNUSED(facebookId);
21
22     return QString();
23 }