mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
e9ee29978d
fixes #437
40 lines
968 B
C++
40 lines
968 B
C++
#include "MatrixClient.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace {
|
|
auto client_ = std::make_shared<mtx::http::Client>();
|
|
}
|
|
|
|
namespace http {
|
|
|
|
mtx::http::Client *
|
|
client()
|
|
{
|
|
return client_.get();
|
|
}
|
|
|
|
bool
|
|
is_logged_in()
|
|
{
|
|
return !client_->access_token().empty();
|
|
}
|
|
|
|
void
|
|
init()
|
|
{
|
|
qRegisterMetaType<mtx::responses::Login>();
|
|
qRegisterMetaType<mtx::responses::Messages>();
|
|
qRegisterMetaType<mtx::responses::Notifications>();
|
|
qRegisterMetaType<mtx::responses::Rooms>();
|
|
qRegisterMetaType<mtx::responses::Sync>();
|
|
qRegisterMetaType<mtx::responses::JoinedGroups>();
|
|
qRegisterMetaType<mtx::responses::GroupProfile>();
|
|
qRegisterMetaType<std::string>();
|
|
qRegisterMetaType<nlohmann::json>();
|
|
qRegisterMetaType<std::vector<std::string>>();
|
|
qRegisterMetaType<std::vector<QString>>();
|
|
qRegisterMetaType<std::map<QString, bool>>("std::map<QString, bool>");
|
|
}
|
|
|
|
} // namespace http
|