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

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