about summary refs log tree commit diff stats
path: root/src/tweet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tweet.h')
-rw-r--r--src/tweet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tweet.h b/src/tweet.h index 137776c..fba1ced 100644 --- a/src/tweet.h +++ b/src/tweet.h
@@ -16,6 +16,7 @@ namespace twitter {
16 tweet_id getID() const; 16 tweet_id getID() const;
17 std::string getText() const; 17 std::string getText() const;
18 const user& getAuthor() const; 18 const user& getAuthor() const;
19 bool isRetweet() const;
19 20
20 operator bool() const; 21 operator bool() const;
21 22
@@ -24,6 +25,7 @@ namespace twitter {
24 tweet_id _id; 25 tweet_id _id;
25 std::string _text; 26 std::string _text;
26 user _author; 27 user _author;
28 bool _retweeted;
27 }; 29 };
28 30
29}; 31};