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/tag.hpp

110 lines
2.6 KiB
C++
Raw Normal View History

2018-03-31 04:07:21 +02:00
/* This file is part of mastodon-cpp.
2019-03-20 06:15:43 +01:00
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
*
2018-03-31 04:07:21 +02:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASTODON_CPP_EASY_TAG_HPP
#define MASTODON_CPP_EASY_TAG_HPP
#include <string>
2018-06-11 01:39:19 +02:00
#include <cstdint>
2018-03-31 04:07:21 +02:00
// If we are compiling mastodon-cpp, use another include path
#ifdef MASTODON_CPP
#include "mastodon-cpp.hpp"
2019-03-29 14:44:39 +01:00
#include "easy/entity.hpp"
2018-03-31 04:07:21 +02:00
#else
#include <mastodon-cpp/mastodon-cpp.hpp>
2019-03-29 14:44:39 +01:00
#include <mastodon-cpp/easy/entity.hpp>
2018-03-31 04:07:21 +02:00
#endif
using std::string;
using std::uint64_t;
2018-03-31 04:07:21 +02:00
namespace Mastodon
2019-03-29 14:44:39 +01:00
{
namespace Easy
2018-03-31 04:07:21 +02:00
{
/*!
* @brief Class to hold tags.
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
2018-03-31 04:07:21 +02:00
*/
2019-03-29 14:44:39 +01:00
class Tag : public Entity
2018-03-31 04:07:21 +02:00
{
public:
2018-06-11 01:39:19 +02:00
/*!
* @brief Class to hold Tag history
2019-03-29 14:44:39 +01:00
*
2018-06-11 01:39:19 +02:00
* @since 0.16.0
*/
class History : public Easy::Entity
{
public:
2019-03-11 20:48:54 +01:00
using Entity::Entity;
2018-06-11 01:39:19 +02:00
virtual bool valid() const override;
2018-06-11 01:39:19 +02:00
/*!
* @brief Returns the number of accounts using that hashtag.
2019-03-29 14:44:39 +01:00
*
* @since 0.16.0
2018-06-11 01:39:19 +02:00
*/
uint64_t accounts();
2018-06-11 01:39:19 +02:00
/*!
* @brief Returns the day.
2019-03-29 14:44:39 +01:00
*
* @since 0.16.0
2018-06-11 01:39:19 +02:00
*/
2019-05-13 21:26:55 +02:00
const Easy::time_type day();
2018-06-11 01:39:19 +02:00
/*!
* @brief Returns the number of accounts using that hashtag.
2019-03-29 14:44:39 +01:00
*
* @since 0.16.0
2018-06-11 01:39:19 +02:00
*/
uint64_t uses();
2018-06-11 01:39:19 +02:00
};
2019-03-11 20:48:54 +01:00
using Entity::Entity;
2018-03-31 04:07:21 +02:00
virtual bool valid() const override;
2018-03-31 04:07:21 +02:00
/*!
2018-06-11 01:39:19 +02:00
* @brief Returns the name of the tag
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
2018-03-31 04:07:21 +02:00
*/
const string name() const;
/*!
2018-06-11 01:39:19 +02:00
* @brief Returns the URL of the tag
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
2018-03-31 04:07:21 +02:00
*/
const string url() const;
2018-06-11 01:39:19 +02:00
/*!
* @brief Returns the history of the tag
2019-03-29 14:44:39 +01:00
*
2018-06-11 01:39:19 +02:00
* @since 0.16.0
*/
const std::vector<History> history() const;
2018-03-31 04:07:21 +02:00
};
}
2019-03-29 14:44:39 +01:00
}
2018-03-31 04:07:21 +02:00
#endif // MASTODON_CPP_EASY_TAG_HPP