#pragma once #include #include "controllers/accounts/Account.hpp" #include "providers/twitch/TwitchAccountManager.hpp" #include "util/SharedPtrElementLess.hpp" #include "util/SignalVector2.hpp" namespace chatterino { namespace controllers { namespace accounts { class AccountModel; class AccountController { public: AccountController(); AccountModel *createModel(QObject *parent); void load(); providers::twitch::TwitchAccountManager twitch; private: util::SortedSignalVector, util::SharedPtrElementLess> accounts; }; } // namespace accounts } // namespace controllers } // namespace chatterino