about summary refs log tree commit diff stats
path: root/src/client.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-02-23 11:20:55 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-02-23 11:20:55 -0500
commit5014ad408ace1dda89e0e9852db4a001b605c0a2 (patch)
tree5831cc9546038cc3dc9a11fba05692346f06d6dc /src/client.h
parentd1d20515281e32b23657762e72bf37dcff14f0ab (diff)
downloadlibtwittercpp-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.h4
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