2015-07-13 15:35:19 +03:00
|
|
|
// stub to prevent linker error
|
|
|
|
#include "accountmanager.h"
|
2017-09-20 17:50:34 +03:00
|
|
|
OCC::AccountManager *OCC::AccountManager::instance() { return static_cast<AccountManager *>(new QObject); }
|
2016-03-01 18:08:23 +03:00
|
|
|
void OCC::AccountManager::saveAccountState(AccountState *) { }
|
2015-08-06 13:49:18 +03:00
|
|
|
void OCC::AccountManager::save(bool saveCredentials) { Q_UNUSED(saveCredentials); }
|
2017-09-20 17:50:34 +03:00
|
|
|
void OCC::AccountManager::accountRemoved(OCC::AccountState*) { }
|
|
|
|
const QMetaObject OCC::AccountManager::staticMetaObject = QObject::staticMetaObject;
|