smallCamelCaseに変更

This commit is contained in:
keita
2021-04-03 23:31:27 +09:00
parent f97deb5c36
commit a4fd0d9830
8 changed files with 35 additions and 32 deletions
+2 -2
View File
@@ -7,13 +7,13 @@ Favorite::Favorite(std::shared_ptr<CocoaTweet::OAuth::OAuth1> _oauth) {
oauth_ = _oauth;
}
CocoaTweet::API::Model::Tweet Favorite::Create(const std::string& _id) const {
CocoaTweet::API::Model::Tweet Favorite::create(const std::string& _id) const {
CocoaTweet::API::Favorites::Create create;
create.id(_id);
return create.process(oauth_);
}
CocoaTweet::API::Model::Tweet Favorite::Destroy(const std::string& _id) const {
CocoaTweet::API::Model::Tweet Favorite::destroy(const std::string& _id) const {
CocoaTweet::API::Favorites::Destroy destroy;
destroy.id(_id);
return destroy.process(oauth_);