about summary refs log tree commit diff stats
path: root/src/client.h
blob: 1ab5c7062851bf52d560a964b282f4563638dcf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef TWITTER_H_ABFF6A12
#define TWITTER_H_ABFF6A12

#include "twitter.h"

namespace OAuth {
  class Consumer;
  class Token;
  class Client;
};

namespace twitter {
  
  class client {
    public:
      client(const auth& _auth);
      ~client();
      
      response updateStatus(std::string msg, tweet& result);
      
    private:
      OAuth::Consumer* _oauth_consumer;
      OAuth::Token* _oauth_token;
      OAuth::Client* _oauth_client;
  };
  
};

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