とりあえずcURLを使って投げられるようなデータは作成できた(#47)(#48)(#49)

This commit is contained in:
keita
2021-02-17 00:03:57 +09:00
parent 0a7785ef73
commit 35394bd0ea
13 changed files with 333 additions and 299 deletions
+10 -9
View File
@@ -4,15 +4,16 @@
#include "cocoatweet/api/status/status.h"
#include "cocoatweet/oauth/oauth.h"
namespace CocoaTweet::API{
class API{
public:
API(CocoaTweet::OAuth::Key _key);
Statuses::Status status() const;
private:
Statuses::Status status_;
std::shared_ptr<CocoaTweet::OAuth::OAuth1> oauth_;
namespace CocoaTweet::API {
class API {
public:
API(CocoaTweet::OAuth::Key _key);
Statuses::Status status() const;
private:
Statuses::Status status_;
std::shared_ptr<CocoaTweet::OAuth::OAuth1> oauth_;
};
}
} // namespace CocoaTweet::API
#endif