summary refs log tree commit diff
path: root/src/MatrixClient.h
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-17 16:37:25 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-17 16:37:25 +0300
commit0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a (patch)
tree21f655d30630fe77ba48d07e4b357e2b6c6a5730 /src/MatrixClient.h
parentMerge pull request #372 from bebehei/notification (diff)
downloadnheko-0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a.tar.xz
Move all files under src/
Diffstat (limited to 'src/MatrixClient.h')
-rw-r--r--src/MatrixClient.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/MatrixClient.h b/src/MatrixClient.h
new file mode 100644
index 00000000..12bba889
--- /dev/null
+++ b/src/MatrixClient.h
@@ -0,0 +1,30 @@
+#pragma once
+
+#include <QMetaType>
+#include <QString>
+
+#include <mtx/responses.hpp>
+#include <mtxclient/http/client.hpp>
+
+Q_DECLARE_METATYPE(mtx::responses::Login)
+Q_DECLARE_METATYPE(mtx::responses::Messages)
+Q_DECLARE_METATYPE(mtx::responses::Notifications)
+Q_DECLARE_METATYPE(mtx::responses::Rooms)
+Q_DECLARE_METATYPE(mtx::responses::Sync)
+Q_DECLARE_METATYPE(mtx::responses::JoinedGroups)
+Q_DECLARE_METATYPE(mtx::responses::GroupProfile)
+Q_DECLARE_METATYPE(std::string)
+Q_DECLARE_METATYPE(std::vector<std::string>)
+Q_DECLARE_METATYPE(std::vector<QString>)
+
+namespace http {
+mtx::http::Client *
+client();
+
+bool
+is_logged_in();
+
+//! Initialize the http module
+void
+init();
+}