about summary refs log tree commit diff stats
path: root/src/tweet.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-04-12 18:40:52 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-04-12 18:40:52 -0400
commit891d57d200f55b91f80b6d3b4dd0c30479be6109 (patch)
treee87d1566ff941aa5003e1f937ccbb497fe1606a2 /src/tweet.cpp
downloadlibtwittercpp-891d57d200f55b91f80b6d3b4dd0c30479be6109.tar.gz
libtwittercpp-891d57d200f55b91f80b6d3b4dd0c30479be6109.tar.bz2
libtwittercpp-891d57d200f55b91f80b6d3b4dd0c30479be6109.zip
Added basic ability to tweet
Diffstat (limited to 'src/tweet.cpp')
-rw-r--r--src/tweet.cpp15
1 files changed, 15 insertions, 0 deletions
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 @@
1#include "twitter.h"
2
3namespace twitter {
4
5 tweet::tweet()
6 {
7 _valid = false;
8 }
9
10 tweet::tweet(const json& data)
11 {
12 _valid = true;
13 }
14
15};