summaryrefslogtreecommitdiff
path: root/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'board.h')
-rw-r--r--board.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/board.h b/board.h
index 7e8fb97..e48dd6f 100644
--- a/board.h
+++ b/board.h
@@ -48,7 +48,13 @@ public:
void login(const QString& username, const QString& password);
void logout();
- // Some helper functions
+ // Other functions that query the database
+ int getTopicForumId(int topicId);
+
+ // Posting stuff
+ Q_INVOKABLE void replyToTopic(int topicId, const QString& text);
+
+ // BBCode-related helper functions
QString removeHtml(QString text) const;
QString removeBbcode(QString text) const;
QString bbcodeToRichText(QString text) const;