about summary refs log tree commit diff stats
path: root/src/tweet.h
blob: e099579d7adc9e2cf1ff3c6efac383968e20c243 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TWEET_H_CE980721
#define TWEET_H_CE980721

#include <json.hpp>

using nlohmann::json;

namespace twitter {
  
  class tweet {
    public:
      tweet();
      tweet(const json& _data);
      
    private:
      bool _valid;
  };
  
};

#endif /* end of include guard: TWEET_H_CE980721 */