mirror-chatterino2/src/singletons/accountmanager.hpp

22 lines
340 B
C++
Raw Normal View History

2017-12-31 00:50:07 +01:00
#pragma once
2018-02-05 15:11:50 +01:00
#include "providers/twitch/twitchaccountmanager.hpp"
2017-12-31 00:50:07 +01:00
namespace chatterino {
2017-12-31 22:58:35 +01:00
namespace singletons {
2017-12-31 00:50:07 +01:00
class AccountManager
{
public:
AccountManager() = default;
2017-12-31 00:50:07 +01:00
~AccountManager() = delete;
2017-12-31 00:50:07 +01:00
void load();
2018-02-05 15:11:50 +01:00
providers::twitch::TwitchAccountManager Twitch;
2017-12-31 00:50:07 +01:00
};
} // namespace singletons
2017-12-31 00:50:07 +01:00
} // namespace chatterino