mastodon-cpp  0.105.1
report.hpp
1 /* This file is part of mastodon-cpp.
2  * Copyright © 2018, 2019 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_REPORT_HPP
18 #define MASTODON_CPP_EASY_REPORT_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/entity.hpp"
27 #else
28  #include <mastodon-cpp/mastodon-cpp.hpp>
29  #include <mastodon-cpp/easy/entity.hpp>
30 #endif
31 
32 using std::string;
33 
34 namespace Mastodon
35 {
36 namespace Easy
37 {
43  class Report : public Entity
44  {
45  public:
46  using Entity::Entity;
47 
48  virtual bool valid() const override;
49 
56  bool action_taken() const;
57 
63  const string id() const;
64  };
65 }
66 }
67 
68 #endif // MASTODON_CPP_EASY_REPORT_HPP
Entity()
Constructs an empty Entity object.
Definition: entity.cpp:42
virtual bool valid() const override
Returns true if the Entity holds valid data.
Definition: report.cpp:22
Class to hold reports.
Definition: report.hpp:43
Collection of things to interface with server software that implements the Mastodon API...
Definition: mastodon-cpp.hpp:52
Base class for all entities.
Definition: entity.hpp:41
bool action_taken() const
Returns true if an action was taken in response to the report.
Definition: report.cpp:31
const string id() const
Returns the ID of the report.
Definition: report.cpp:36