From 3e292e37a1313e22f13ef4b7f342c6002ea6a947 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 23 Feb 2018 11:21:10 -0500 Subject: Whitespace changes --- src/client.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/client.h') diff --git a/src/client.h b/src/client.h index 9282321..1e1b1ab 100644 --- a/src/client.h +++ b/src/client.h @@ -18,23 +18,23 @@ namespace OAuth { }; namespace twitter { - + class client { public: - + client(const auth& _auth); ~client(); - + tweet updateStatus(std::string msg, std::list media_ids = {}) const; long uploadMedia(std::string media_type, const char* data, long data_length) const; - + tweet replyToTweet(std::string msg, tweet_id in_response_to, std::list media_ids = {}) const; tweet replyToTweet(std::string msg, const tweet& in_response_to, std::list media_ids = {}) const; - + std::set getFriends(user_id id) const; std::set getFriends(const user& u) const; std::set getFriends() const; - + std::set getFollowers(user_id id) const; std::set getFollowers(const user& u) const; std::set getFollowers() const; @@ -43,28 +43,28 @@ namespace twitter { void follow(user_id toFollow) const; void follow(const user& toFollow) const; - + void unfollow(user_id toUnfollow) const; void unfollow(const user& toUnfollow) const; - + const user& getUser() const; - + const configuration& getConfiguration() const; - + private: - + friend class stream; - + std::unique_ptr _oauth_consumer; std::unique_ptr _oauth_token; std::unique_ptr _oauth_client; - + std::unique_ptr _current_user; - + mutable std::unique_ptr _configuration; mutable time_t _last_configuration_update; }; - + }; #endif /* end of include guard: TWITTER_H_ABFF6A12 */ -- cgit 1.4.1