diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-04-12 18:40:52 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-04-12 18:40:52 -0400 |
commit | 891d57d200f55b91f80b6d3b4dd0c30479be6109 (patch) | |
tree | e87d1566ff941aa5003e1f937ccbb497fe1606a2 /src/tweet.h | |
download | libtwittercpp-891d57d200f55b91f80b6d3b4dd0c30479be6109.tar.gz libtwittercpp-891d57d200f55b91f80b6d3b4dd0c30479be6109.tar.bz2 libtwittercpp-891d57d200f55b91f80b6d3b4dd0c30479be6109.zip |
Added basic ability to tweet
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 */ | ||