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.cpp | |
download | libtwittercpp-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.cpp | 15 |
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 | |||
3 | namespace twitter { | ||
4 | |||
5 | tweet::tweet() | ||
6 | { | ||
7 | _valid = false; | ||
8 | } | ||
9 | |||
10 | tweet::tweet(const json& data) | ||
11 | { | ||
12 | _valid = true; | ||
13 | } | ||
14 | |||
15 | }; | ||