mastodon-cpp  0.15.1
mention.hpp
1 /* This file is part of mastodon-cpp.
2  * Copyright © 2018 tastytea <tastytea@tastytea.de>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef MASTODON_CPP_EASY_MENTION_HPP
18 #define MASTODON_CPP_EASY_MENTION_HPP
19 
20 #include <string>
21 #include <cstdint>
22 
23 // If we are compiling mastodon-cpp, use another include path
24 #ifdef MASTODON_CPP
25  #include "mastodon-cpp.hpp"
26  #include "easy/easy.hpp"
27 #else
28  #include <mastodon-cpp/mastodon-cpp.hpp>
29  #include <mastodon-cpp/easy/easy.hpp>
30 #endif
31 
32 using std::string;
33 using std::uint_fast64_t;
34 using std::chrono::system_clock;
35 
36 namespace Mastodon
37 {
41  class Easy::Mention : public Easy::Entity
42  {
43  public:
49  explicit Mention(const string &json);
50 
54  Mention();
55 
59  const string acct() const;
60 
64  const uint_fast64_t id() const;
65 
69  const string url() const;
70 
74  const string username() const;
75  };
76 }
77 
78 #endif // MASTODON_CPP_EASY_MENTION_HPP
const string acct() const
Returns acct.
Definition: mention.cpp:30
Mention()
Constructs an empty Mention object.
Definition: mention.cpp:26
Class to hold mentions.
Definition: mention.hpp:41
const uint_fast64_t id() const
Returns account ID.
Definition: mention.cpp:35
Definition: mastodon-cpp.hpp:51
Base class for all entities.
Definition: easy.hpp:225
const string url() const
Returns the URL of user&#39;s profile.
Definition: mention.cpp:40
const string username() const
Returns the username of the account.
Definition: mention.cpp:45