This repository has been archived on 2020-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-cpp/src/easy/entities/report.hpp

63 lines
1.5 KiB
C++
Raw Normal View History

/* This file is part of mastodon-cpp.
2019-03-20 06:15:43 +01:00
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
2019-08-15 22:53:38 +02:00
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-08-15 22:53:38 +02:00
* GNU Affero General Public License for more details.
*
2019-08-15 22:53:38 +02:00
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASTODON_CPP_EASY_REPORT_HPP
#define MASTODON_CPP_EASY_REPORT_HPP
#include <string>
#include <cstdint>
2019-08-12 04:06:43 +02:00
#include "../../mastodon-cpp.hpp"
#include "../entity.hpp"
using std::string;
namespace Mastodon
2019-03-29 14:44:39 +01:00
{
namespace Easy
{
/*!
* @brief Class to hold reports
2019-03-29 14:44:39 +01:00
*
* before 0.11.0
*/
2019-03-29 14:44:39 +01:00
class Report : public Entity
{
public:
2019-03-11 20:48:54 +01:00
using Entity::Entity;
virtual bool valid() const override;
/*!
* @brief Returns true if an action was taken in response to the
* report
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
2018-12-04 11:26:28 +01:00
bool action_taken() const;
2019-03-29 14:44:39 +01:00
/*!
* @brief Returns the ID of the report
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
const string id() const;
};
}
2019-03-29 14:44:39 +01:00
}
#endif // MASTODON_CPP_EASY_REPORT_HPP