about summary refs log tree commit diff stats
path: root/src/tweet.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-08-20 14:04:11 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-08-20 14:04:11 -0400
commit6c9f541f34c58ac817f88ffb5e069b929bbbc274 (patch)
treef493fbccbcdc1489b0ad58cd4b8587a3bf020bf4 /src/tweet.h
parent69fc8d805396b889b5e8c1c88e8129d93db77d29 (diff)
parentc3cc76301d64320791f7097709ffcd36d7206266 (diff)
downloadlibtwittercpp-6c9f541f34c58ac817f88ffb5e069b929bbbc274.tar.gz
libtwittercpp-6c9f541f34c58ac817f88ffb5e069b929bbbc274.tar.bz2
libtwittercpp-6c9f541f34c58ac817f88ffb5e069b929bbbc274.zip
Merge branch 'master' of https://github.com/hatkirby/libtwittercpp
Diffstat (limited to 'src/tweet.h')
-rw-r--r--src/tweet.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tweet.h b/src/tweet.h index 3035d51..a29e45c 100644 --- a/src/tweet.h +++ b/src/tweet.h
@@ -39,7 +39,7 @@ namespace twitter {
39 { 39 {
40 return *_author; 40 return *_author;
41 } 41 }
42 42
43 bool isRetweet() const 43 bool isRetweet() const
44 { 44 {
45 return _is_retweet; 45 return _is_retweet;
@@ -63,6 +63,8 @@ namespace twitter {
63 63
64 bool isMyTweet() const; 64 bool isMyTweet() const;
65 65
66 std::string getURL() const;
67
66 private: 68 private:
67 69
68 const client& _client; 70 const client& _client;