diff options
Diffstat (limited to 'protocols/FacebookRM/src/client.h')
-rw-r--r-- | protocols/FacebookRM/src/client.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/client.h b/protocols/FacebookRM/src/client.h index 9f51ebe2f6..ce49743ea8 100644 --- a/protocols/FacebookRM/src/client.h +++ b/protocols/FacebookRM/src/client.h @@ -90,7 +90,7 @@ public: HANDLE cookies_lock_;
- std::map< std::string, std::string > cookies;
+ std::map<std::string, std::string> cookies;
std::string get_newsfeed_type();
std::string get_server_type();
@@ -137,7 +137,7 @@ public: // Updates handling
- List::List< facebook_user > buddies;
+ List::List<facebook_user> buddies;
HANDLE buddies_lock_;
HANDLE send_message_lock_;
@@ -149,6 +149,8 @@ public: // Messages handling
+ std::set<std::string> messages_sent;
+
bool channel();
bool send_message(std::string message_recipient, std::string message_text, std::string *error_text, int method);
////////////////////////////////////////////////////////////
|