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.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/tweet.cpp (limited to 'src/tweet.cpp') diff --git a/src/tweet.cpp b/src/tweet.cpp new file mode 100644 index 0000000..165187e --- /dev/null +++ b/src/tweet.cpp @@ -0,0 +1,15 @@ +#include "twitter.h" + +namespace twitter { + + tweet::tweet() + { + _valid = false; + } + + tweet::tweet(const json& data) + { + _valid = true; + } + +}; -- cgit 1.4.1