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

#include <string>

namespace twitter {
  
  class direct_message {
  public:
    
    direct_message() {}
    explicit direct_message(std::string data);
  };
  
};

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