mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-26 13:42:45 +01:00
d521232587
This will be useful if we ever want to store account-level gui state. I built this originally because I thought a paused account would be this kind of state.
6 lines
274 B
C++
6 lines
274 B
C++
// stub to prevent linker error
|
|
#include "accountmanager.h"
|
|
OCC::AccountManager *OCC::AccountManager::instance() { return 0; }
|
|
void OCC::AccountManager::saveAccountState(AccountState *) { }
|
|
void OCC::AccountManager::save(bool saveCredentials) { Q_UNUSED(saveCredentials); }
|