diff options
Diffstat (limited to 'src/tweet.h')
| -rw-r--r-- | src/tweet.h | 17 |
1 files changed, 17 insertions, 0 deletions
| diff --git a/src/tweet.h b/src/tweet.h new file mode 100644 index 0000000..1d83aae --- /dev/null +++ b/src/tweet.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #ifndef TWEET_H_CE980721 | ||
| 2 | #define TWEET_H_CE980721 | ||
| 3 | |||
| 4 | namespace twitter { | ||
| 5 | |||
| 6 | class tweet { | ||
| 7 | public: | ||
| 8 | tweet(); | ||
| 9 | tweet(const json& _data); | ||
| 10 | |||
| 11 | private: | ||
| 12 | bool _valid; | ||
| 13 | }; | ||
| 14 | |||
| 15 | }; | ||
| 16 | |||
| 17 | #endif /* end of include guard: TWEET_H_CE980721 */ | ||
