From 891d57d200f55b91f80b6d3b4dd0c30479be6109 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 12 Apr 2016 18:40:52 -0400 Subject: Added basic ability to tweet --- src/tweet.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/tweet.h (limited to 'src/tweet.h') 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 @@ +#ifndef TWEET_H_CE980721 +#define TWEET_H_CE980721 + +namespace twitter { + + class tweet { + public: + tweet(); + tweet(const json& _data); + + private: + bool _valid; + }; + +}; + +#endif /* end of include guard: TWEET_H_CE980721 */ -- cgit 1.4.1