about summary refs log tree commit diff stats
path: root/src/tweet.cpp
blob: 165187ec03572662d32bf65a88b70df37106e212 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "twitter.h"

namespace twitter {
  
  tweet::tweet()
  {
    _valid = false;
  }
  
  tweet::tweet(const json& data)
  {
    _valid = true;
  }
  
};