Added Easy::Context

This commit is contained in:
tastytea 2018-03-30 20:22:45 +02:00
parent 69740568e0
commit a89656caf1
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 99 additions and 0 deletions

33
src/easy/context.cpp Normal file
View File

@ -0,0 +1,33 @@
/* This file is part of mastodon-cpp.
* Copyright © 2018 tastytea <tastytea@tastytea.de>
*
* 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/>.
*/
#include <string>
#include <jsoncpp/json/json.h>
#include "context.hpp"
#include "macros.hpp"
using namespace Mastodon;
using Context = Easy::Context;
using std::string;
using std::uint64_t;
Context::Context(const string &json)
: Entity(json)
{}
Context::Context()
: Entity()
{}

66
src/easy/context.hpp Normal file
View File

@ -0,0 +1,66 @@
/* This file is part of mastodon-cpp.
* Copyright © 2018 tastytea <tastytea@tastytea.de>
*
* 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_CONTEXT_HPP
#define MASTODON_CPP_EASY_CONTEXT_HPP
#include <string>
#include <vector>
// If we are compiling mastodon-cpp, use another include path
#ifdef MASTODON_CPP
#include "mastodon-cpp.hpp"
#include "easy.hpp"
#else
#include <mastodon-cpp/mastodon-cpp.hpp>
#include <mastodon-cpp/easy.hpp>
#endif
using std::string;
namespace Mastodon
{
/*!
* @brief Class to hold cards
*/
class Easy::Context : public Easy::Entity
{
public:
/*!
* @brief Constructs a Context object from a JSON string.
*
* @param json JSON string
*/
explicit Context(const string &json);
/*!
* @brief Constructs an empty Context object.
*/
Context();
// /*!
// * @brief Returns the ancestors of the Status as vector of Statuses
// */
// const std::vector<Status> ancestors() const;
// /*!
// * @brief Returns the descendants of the Status as vector of Statuses
// */
// const std::vector<Status> descendants() const;
};
}
#endif // MASTODON_CPP_EASY_CONTEXT_HPP