とりあえずコミット。認証とおらん(#47)(48)(#49)

This commit is contained in:
keita
2021-02-16 07:31:34 +09:00
parent 3a7976763a
commit 6fa7c457c0
16 changed files with 520 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef COCOATWEET_API_STATUSES_UPDATE_H_
#define COCOATWEET_API_STATUSES_UPDATE_H_
#include <memory>
#include "cocoatweet/api/interface.h"
//#include "cocoatweet/oauth/oauth.h"
namespace CocoaTweet::API::Statuses{
class Update :public Interface{
public:
Update();
void status(const std::string _status);
void process(std::weak_ptr<CocoaTweet::OAuth::OAuth1> _oauth, std::function<void(std::string)> _callback);
private:
std::string status_;
};
}
#endif