diff --git a/src/easy/account.hpp b/src/easy/account.hpp index fecbc5d..703d7dc 100644 --- a/src/easy/account.hpp +++ b/src/easy/account.hpp @@ -32,7 +32,6 @@ #endif using std::string; -using std::uint16_t; using std::uint64_t; namespace Mastodon diff --git a/src/easy/all.hpp b/src/easy/all.hpp index 378435e..535e3f2 100644 --- a/src/easy/all.hpp +++ b/src/easy/all.hpp @@ -25,6 +25,7 @@ //#include "easy/context.hpp" #include "easy/emoji.hpp" #include "easy/instance.hpp" + #include "easy/list.hpp" #else #include #include @@ -33,6 +34,7 @@ #include //#include #include + #include "easy/list.hpp" #endif #endif // MASTODON_CPP_EASY_ALL_HPP diff --git a/src/easy/card.hpp b/src/easy/card.hpp index ed0b3a3..40bf49c 100644 --- a/src/easy/card.hpp +++ b/src/easy/card.hpp @@ -30,7 +30,6 @@ #endif using std::string; -using std::uint16_t; using std::uint64_t; namespace Mastodon diff --git a/src/easy/context.hpp b/src/easy/context.hpp index f986b79..466cf42 100644 --- a/src/easy/context.hpp +++ b/src/easy/context.hpp @@ -34,7 +34,7 @@ using std::string; namespace Mastodon { /*! - * @brief Class to hold cards + * @brief Class to hold contexts */ class Easy::Context : public Easy::Entity { diff --git a/src/easy/easy.hpp b/src/easy/easy.hpp index 4c42013..2f36729 100644 --- a/src/easy/easy.hpp +++ b/src/easy/easy.hpp @@ -180,6 +180,7 @@ public: class Context; class Emoji; class Instance; + class List; }; } diff --git a/src/easy/emoji.hpp b/src/easy/emoji.hpp index cf5d793..afd0a68 100644 --- a/src/easy/emoji.hpp +++ b/src/easy/emoji.hpp @@ -33,7 +33,7 @@ using std::string; namespace Mastodon { /*! - * @brief Class to hold cards + * @brief Class to hold emojis */ class Easy::Emoji : public Easy::Entity { diff --git a/src/easy/instance.cpp b/src/easy/instance.cpp index f269a71..d29f32d 100644 --- a/src/easy/instance.cpp +++ b/src/easy/instance.cpp @@ -25,7 +25,6 @@ using namespace Mastodon; using Instance = Easy::Instance; using std::string; -using std::uint64_t; Instance::Instance(const string &json) : Entity(json) diff --git a/src/easy/instance.hpp b/src/easy/instance.hpp index b5b6897..2fa16ca 100644 --- a/src/easy/instance.hpp +++ b/src/easy/instance.hpp @@ -36,7 +36,7 @@ using std::string; namespace Mastodon { /*! - * @brief Class to hold cards + * @brief Class to hold instances */ class Easy::Instance : public Easy::Entity {