interfaceをチョットいじった

This commit is contained in:
keita
2021-02-21 22:51:15 +09:00
parent 788eda9d4a
commit 255536209c
10 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#include <cocoatweet/api/favorite/destroy.h>
#include <iostream>
namespace CocoaTweet::API::Favorites {
Destroy::Destroy() {
contentType_ = "application/x-www-form-urlencoded";
@@ -11,7 +11,7 @@ void Destroy::id(const std::string& _id) {
}
void Destroy::process(std::weak_ptr<CocoaTweet::OAuth::OAuth1> _oauth) {
postInterface::process(_oauth,
HttpPost::process(_oauth,
[](const std::string& _srv) { std::cout << _srv << std::endl; });
}
} // namespace CocoaTweet::API::Favorites