diff options
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 | }; | ||