diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-02-23 11:20:55 -0500 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-02-23 11:20:55 -0500 |
commit | 5014ad408ace1dda89e0e9852db4a001b605c0a2 (patch) | |
tree | 5831cc9546038cc3dc9a11fba05692346f06d6dc /src/client.h | |
parent | d1d20515281e32b23657762e72bf37dcff14f0ab (diff) | |
download | libtwittercpp-5014ad408ace1dda89e0e9852db4a001b605c0a2.tar.gz libtwittercpp-5014ad408ace1dda89e0e9852db4a001b605c0a2.tar.bz2 libtwittercpp-5014ad408ace1dda89e0e9852db4a001b605c0a2.zip |
Added ability to get blocklist
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h index c920f82..9282321 100644 --- a/src/client.h +++ b/src/client.h | |||
@@ -38,7 +38,9 @@ namespace twitter { | |||
38 | std::set<user_id> getFollowers(user_id id) const; | 38 | std::set<user_id> getFollowers(user_id id) const; |
39 | std::set<user_id> getFollowers(const user& u) const; | 39 | std::set<user_id> getFollowers(const user& u) const; |
40 | std::set<user_id> getFollowers() const; | 40 | std::set<user_id> getFollowers() const; |
41 | 41 | ||
42 | std::set<user_id> getBlocks() const; | ||
43 | |||
42 | void follow(user_id toFollow) const; | 44 | void follow(user_id toFollow) const; |
43 | void follow(const user& toFollow) const; | 45 | void follow(const user& toFollow) const; |
44 | 46 | ||