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

#include <string>

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

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