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

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

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