summaryrefslogtreecommitdiff
path: root/src/client/Client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/Client.h')
-rw-r--r--src/client/Client.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/Client.h b/src/client/Client.h
index b2822d4..a2d8720 100644
--- a/src/client/Client.h
+++ b/src/client/Client.h
@@ -67,6 +67,7 @@ private:
void updateStamps();
static vector<std::string> explodePropertyString(std::string property);
void notifyUpdateAvailable();
+ void notifyAuthUserChanged();
//Config file handle
json::Object configDocument;
@@ -79,6 +80,7 @@ public:
~Client();
void AddListener(ClientListener * listener);
+ void RemoveListener(ClientListener * listener);
RequestStatus ExecVote(int saveID, int direction);
RequestStatus UploadSave(SaveInfo * save);
@@ -90,6 +92,8 @@ public:
int GetStampsCount();
SaveFile * GetFirstStamp();
+ RequestStatus AddComment(int saveID, std::string comment);
+
unsigned char * GetSaveData(int saveID, int saveDate, int & dataLength);
LoginStatus Login(string username, string password, User & user);
void ClearThumbnailRequests();