21 lines
446 B
C++
21 lines
446 B
C++
#ifndef COCOATWEET_API_STATUSES_UPDATE_H_
|
|
#define COCOATWEET_API_STATUSES_UPDATE_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "cocoatweet/api/interface/postInterface.h"
|
|
//#include "cocoatweet/oauth/oauth.h"
|
|
|
|
namespace CocoaTweet::API::Statuses {
|
|
class Update : public CocoaTweet::API::Interface::postInterface {
|
|
public:
|
|
Update();
|
|
void status(const std::string _status);
|
|
|
|
private:
|
|
std::string status_;
|
|
};
|
|
} // namespace CocoaTweet::API::Statuses
|
|
|
|
#endif
|