Added Easy::Entity::to_object()

This commit is contained in:
tastytea 2018-04-01 00:15:35 +02:00
parent 233646668e
commit 67da294d1d
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
3 changed files with 14 additions and 3 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.7)
project (mastodon-cpp
VERSION 0.7.16
VERSION 0.7.17
LANGUAGES CXX
)

View File

@ -85,6 +85,11 @@ const void Easy::Entity::from_string(const string &json)
}
}
const Json::Value Easy::Entity::to_object() const
{
return _tree;
}
Easy::Entity::Entity()
: _valid(false)
{}

View File

@ -131,13 +131,19 @@ public:
Entity();
/*!
* @brief Replaces the Entity object with a new one from a JSON
* string.
* @brief Replaces the Entity with a new one from a JSON string.
*
* @param json JSON string
*/
const void from_string(const string &json);
/*!
* @brief Returns the JSON object of the Entity
*
* @return JSON object
*/
const Json::Value to_object() const;
/*!
* @brief Returns true if the Entity holds valid data
*/