about summary refs log tree commit diff stats
path: root/src/client.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-08-06 16:15:35 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-08-06 16:15:35 -0400
commit4963c3dd55b765a33a16a77af432f2bfa12b8359 (patch)
tree4da1991c8e6ad784d1defb6e686ce92fd708a4a5 /src/client.h
parentbc893794c5e7ec1a968c00a8538241278e8c8d34 (diff)
downloadlibtwittercpp-4963c3dd55b765a33a16a77af432f2bfa12b8359.tar.gz
libtwittercpp-4963c3dd55b765a33a16a77af432f2bfa12b8359.tar.bz2
libtwittercpp-4963c3dd55b765a33a16a77af432f2bfa12b8359.zip
Added ability to hydrate user objects
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h index 6eb8181..ba68e6b 100644 --- a/src/client.h +++ b/src/client.h
@@ -57,6 +57,8 @@ namespace twitter {
57 57
58 std::list<tweet> hydrateTweets(std::set<tweet_id> ids) const; 58 std::list<tweet> hydrateTweets(std::set<tweet_id> ids) const;
59 59
60 std::list<user> hydrateUsers(std::set<user_id> ids) const;
61
60 private: 62 private:
61 63
62 const auth& auth_; 64 const auth& auth_;