mastodon-cpp  0.17.0
relationship.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_RELATIONSHIP_HPP
18 #define MASTODON_CPP_EASY_RELATIONSHIP_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 
35 namespace Mastodon
36 {
43  {
44  public:
52  explicit Relationship(const string &json);
53 
59  Relationship();
60 
66  const bool blocking() const;
67 
73  const bool domain_blocking() const;
74 
80  const bool followed_by() const;
81 
87  const bool following() const;
88 
94  const uint_fast64_t id() const;
95 
101  const bool muting() const;
102 
108  const bool muting_notifications() const;
109 
115  const bool requested() const;
116  };
117 }
118 
119 #endif // MASTODON_CPP_EASY_RELATIONSHIP_HPP
const bool following() const
Returns true if the user is being following the account.
Definition: relationship.cpp:45
const bool requested() const
Returns true if the user has requested to follow the account.
Definition: relationship.cpp:65
const bool muting() const
Returns true if the user is muting the account.
Definition: relationship.cpp:55
const bool domain_blocking() const
Returns true if the user is blocking the account&#39;s domain.
Definition: relationship.cpp:35
Relationship()
Constructs an empty Relationship object.
Definition: relationship.cpp:26
const bool followed_by() const
Returns true if the user is being followed by the account.
Definition: relationship.cpp:40
const bool muting_notifications() const
Returns true if the user is also muting notifications.
Definition: relationship.cpp:60
const uint_fast64_t id() const
Returns the target account ID.
Definition: relationship.cpp:50
const bool blocking() const
Returns true if the user is blocking the account.
Definition: relationship.cpp:30
Definition: mastodon-cpp.hpp:52
Base class for all entities.
Definition: easy.hpp:297
Class to hold relationships.
Definition: relationship.hpp:42