blob: e51559519c62aeb710158c5288ef1a9031700152 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include "tweet.h"
#include <json.hpp>
using nlohmann::json;
namespace twitter {
tweet::tweet() : _valid(false)
{
}
tweet::tweet(std::string data) : _valid(true)
{
auto _data = json::parse(data);
_id = _data.at("id");
_text = _data.at("text");
_author = user(_data.at("user").dump());
}
tweet_id tweet::getID() const
{
return _id;
}
std::string tweet::getText() const
{
return _text;
}
const user& tweet::getAuthor() const
{
return _author;
}
tweet::operator bool() const
{
return _valid;
}
};
|