code format
This commit is contained in:
@@ -12,21 +12,19 @@ public:
|
||||
: Tweet(Tweet::parse(_responseCode, _json)) {}
|
||||
static Tweet parse(const unsigned int _responseCode, const std::string& _json);
|
||||
void id(const std::string _id);
|
||||
void createdAt(const std::string _at);
|
||||
void text(const std::string _text);
|
||||
void source(const std::string _source);
|
||||
void createdAt(const std::string _at);
|
||||
void text(const std::string _text);
|
||||
void source(const std::string _source);
|
||||
const std::string id() const;
|
||||
const std::string createdAt() const;
|
||||
const std::string text() const;
|
||||
const std::string source() const;
|
||||
const std::string createdAt() const;
|
||||
const std::string text() const;
|
||||
const std::string source() const;
|
||||
|
||||
private:
|
||||
std::string id_;
|
||||
std::string createdAt_;
|
||||
std::string text_;
|
||||
std::string source_;
|
||||
|
||||
|
||||
std::string createdAt_;
|
||||
std::string text_;
|
||||
std::string source_;
|
||||
};
|
||||
} // namespace CocoaTweet::API::Model
|
||||
|
||||
|
||||
Reference in New Issue
Block a user