diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-01-31 06:12:02 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-01-31 15:11:21 +0100 |
commit | 4cd260bfcfcbf88a6efb8bf5a1abf3d37fb06463 (patch) | |
tree | 2d39fbdb1acdf678fa9d28f054ac08d44c91a4cf /src/timeline | |
parent | Add next/prev room shortcuts (diff) | |
download | nheko-4cd260bfcfcbf88a6efb8bf5a1abf3d37fb06463.tar.xz |
Optimize includes a bit
Diffstat (limited to 'src/timeline')
-rw-r--r-- | src/timeline/TimelineModel.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h index 44cf79f4..fb32f0fb 100644 --- a/src/timeline/TimelineModel.h +++ b/src/timeline/TimelineModel.h @@ -6,16 +6,18 @@ #include <QHash> #include <QSet> -#include <mtx/common.hpp> -#include <mtx/responses.hpp> #include <mtxclient/http/errors.hpp> #include "CacheCryptoStructs.h" -#include "Logging.h" namespace mtx::http { using RequestErr = const std::optional<mtx::http::ClientError> &; } +namespace mtx::responses { +struct Timeline; +struct Messages; +struct ClaimKeys; +} namespace qml_mtx_events { Q_NAMESPACE |