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
+1 -1
View File
@@ -5,7 +5,7 @@ Media::Media(std::shared_ptr<CocoaTweet::OAuth::OAuth1> _oauth) {
oauth_ = _oauth;
}
CocoaTweet::API::Model::MediaStore Media::Upload(const std::string& _media) const {
CocoaTweet::API::Model::MediaStore Media::upload(const std::string& _media) const {
CocoaTweet::API::Medias::Upload upload;
upload.media(_media);
return upload.process(oauth_);
+1 -1
View File
@@ -19,7 +19,7 @@ public:
/// @param[in] std::shared_ptr<CocoaTweet::OAuth::OAuth1> : pointer to OAuth object
Media(std::shared_ptr<CocoaTweet::OAuth::OAuth1> _oauth);
CocoaTweet::API::Model::MediaStore Upload(const std::string& _file) const;
CocoaTweet::API::Model::MediaStore upload(const std::string& _file) const;
private:
};