implemented put/add-page methods

This commit is contained in:
Michael Mandl 2018-03-29 20:30:30 +02:00
parent 7183624f63
commit 3b05cd7c99
4 changed files with 88 additions and 14 deletions

View file

@ -25,6 +25,10 @@ class DokuWiki
std::string getWikiTitle();
PageInfo getPageInfo(const std::string &pageName);
bool pageExists(const std::string &pageName);
void putPage(const std::string &pageName, const std::string &content);
void addPage(const std::string &pageName, const std::string &content);
private:
class impl;
std::unique_ptr<impl> pimpl;