2018-03-31 03:28:18 +02:00
|
|
|
/* This file is part of mastodon-cpp.
|
2019-03-20 06:15:43 +01:00
|
|
|
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
|
2019-03-28 15:30:56 +01:00
|
|
|
*
|
2018-03-31 03:28:18 +02:00
|
|
|
* 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
|
2018-03-31 03:28:18 +02:00
|
|
|
* 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.
|
2018-03-31 03:28:18 +02:00
|
|
|
*
|
2019-08-15 22:53:38 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2018-03-31 03:28:18 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MASTODON_CPP_EASY_RESULTS_HPP
|
|
|
|
#define MASTODON_CPP_EASY_RESULTS_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-08-12 04:06:43 +02:00
|
|
|
#include "../../mastodon-cpp.hpp"
|
|
|
|
#include "../entity.hpp"
|
|
|
|
#include "account.hpp"
|
|
|
|
#include "status.hpp"
|
|
|
|
#include "tag.hpp"
|
2018-03-31 03:28:18 +02:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace Mastodon
|
2019-03-29 14:44:39 +01:00
|
|
|
{
|
|
|
|
namespace Easy
|
2018-03-31 03:28:18 +02:00
|
|
|
{
|
|
|
|
/*!
|
|
|
|
* @brief Class to hold results
|
2019-03-29 14:44:39 +01:00
|
|
|
*
|
2018-06-14 11:17:26 +02:00
|
|
|
* @since before 0.11.0
|
2018-03-31 03:28:18 +02:00
|
|
|
*/
|
2019-03-29 14:44:39 +01:00
|
|
|
class Results : public Entity
|
2018-03-31 03:28:18 +02:00
|
|
|
{
|
|
|
|
public:
|
2019-03-11 20:48:54 +01:00
|
|
|
using Entity::Entity;
|
2018-03-31 03:28:18 +02:00
|
|
|
|
2019-03-31 21:43:57 +02:00
|
|
|
virtual bool valid() const override;
|
2018-07-14 11:44:30 +02:00
|
|
|
|
2018-03-31 03:28:18 +02:00
|
|
|
/*!
|
|
|
|
* @brief Returns an array of matched Accounts
|
2019-03-29 14:44:39 +01:00
|
|
|
*
|
2018-06-14 11:17:26 +02:00
|
|
|
* @since before 0.11.0
|
2018-03-31 03:28:18 +02:00
|
|
|
*/
|
|
|
|
const std::vector<Account> accounts() const;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Returns an array of matched Statuses
|
2019-03-29 14:44:39 +01:00
|
|
|
*
|
2018-06-14 11:17:26 +02:00
|
|
|
* @since before 0.11.0
|
2018-03-31 03:28:18 +02:00
|
|
|
*/
|
2018-03-31 04:37:36 +02:00
|
|
|
const std::vector<Status> statuses() const;
|
2018-03-31 03:28:18 +02:00
|
|
|
|
|
|
|
/*!
|
2018-06-11 00:28:28 +02:00
|
|
|
* @brief Returns an array of matched hashtags as string
|
2019-03-29 14:44:39 +01:00
|
|
|
*
|
2018-06-11 00:28:28 +02:00
|
|
|
* @since 0.16.0
|
2018-03-31 03:28:18 +02:00
|
|
|
*/
|
2018-06-11 00:28:28 +02:00
|
|
|
const std::vector<string> hashtags_v1() const;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Returns an array of matched hashtags as Easy::Tag
|
|
|
|
*
|
|
|
|
* @since 0.16.0
|
|
|
|
*/
|
2018-06-11 01:52:21 +02:00
|
|
|
const std::vector<Tag> hashtags_v2() const;
|
2018-03-31 03:28:18 +02:00
|
|
|
};
|
|
|
|
}
|
2019-03-29 14:44:39 +01:00
|
|
|
}
|
2018-03-31 03:28:18 +02:00
|
|
|
|
|
|
|
#endif // MASTODON_CPP_EASY_RESULTS_HPP
|