mirror-chatterino2/src/singletons/accountmanager.hpp

22 lines
319 B
C++
Raw Normal View History

2017-12-31 00:50:07 +01:00
#pragma once
#include "twitch/twitchaccountmanager.hpp"
namespace chatterino {
2017-12-31 22:58:35 +01:00
namespace singletons {
2017-12-31 00:50:07 +01:00
class AccountManager
{
AccountManager();
public:
static AccountManager &getInstance();
void load();
twitch::TwitchAccountManager Twitch;
};
} // namespace singletons
2017-12-31 00:50:07 +01:00
} // namespace chatterino