updated documentation

This commit is contained in:
tastytea 2018-04-01 04:27:29 +02:00
parent 88e2846e83
commit 4f66554271
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
4 changed files with 7 additions and 3 deletions

View File

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

View File

@ -1,7 +1,7 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "mastodon-cpp"
PROJECT_NUMBER = 0.0.0
INPUT = README.md src/ src/easy/
INPUT = README.md src/ src/api/ src/easy/
USE_MDFILE_AS_MAINPAGE = README.md
CREATE_SUBDIRS = NO
ALLOW_UNICODE_NAMES = YES

View File

@ -136,6 +136,9 @@ public:
static const std::vector<stream_event>
parse_stream(const std::string &streamdata);
/*!
* @brief Base class for all entities.
*/
class Entity
{
public:

View File

@ -38,8 +38,9 @@
* @example example10_simplify.cpp
* @example example11_post_media.cpp
* @example example12_easy_laststatus.cpp
* @example example13_easy_laststatus.cpp
* @example example13_easy_stream.cpp
*/
namespace Mastodon
{
/*!