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 */