fix documentation generation

This commit is contained in:
tastytea 2018-03-23 00:53:41 +01:00
parent bcc5c304e9
commit 4ce6a5e03a
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "mastodon-cpp"
PROJECT_NUMBER = 0.0.0
INPUT = README.md src/mastodon-cpp.hpp
INPUT = README.md src/ src/easy/
USE_MDFILE_AS_MAINPAGE = README.md
CREATE_SUBDIRS = NO
ALLOW_UNICODE_NAMES = YES
@ -77,7 +77,7 @@ WARN_FORMAT = "$file:$line: $text"
INPUT_ENCODING = UTF-8
RECURSIVE = NO
EXCLUDE_SYMLINKS = NO
EXAMPLE_PATH = src/examples
EXAMPLE_PATH = examples
EXAMPLE_RECURSIVE = YES
FILTER_SOURCE_FILES = NO
SOURCE_BROWSER = NO

View File

@ -74,6 +74,9 @@ public:
*/
explicit Easy(const string &instance, const string &access_token);
/*!
* @brief Base class for entities.
*/
class Entity
{
public: