smallCamelCaseに変更
This commit is contained in:
@@ -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_);
|
||||
|
||||
@@ -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:
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user