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

#include <string>

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

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