diff --git a/backends/twitter/TwitterResponseParser.h b/backends/twitter/TwitterResponseParser.h index 6339d0e15a1da6ef4d6d94a43785411c37ed34f0..c1e61b0645d56824c1314e134194540d106d1fa6 100644 --- a/backends/twitter/TwitterResponseParser.h +++ b/backends/twitter/TwitterResponseParser.h @@ -23,6 +23,7 @@ namespace TwitterReponseTypes const std::string favorited = "favorited"; const std::string retweeted = "retweeted"; const std::string user = "user"; + const std::string users = "users"; const std::string status = "status"; }; @@ -96,6 +97,7 @@ class Status std::vector getTimeline(std::string &xml); std::vector getIDs(std::string &xml); +std::vector getUsers(std::string &xml); Status getStatus(const Swift::ParserElement::ref &element, const std::string xmlns); User getUser(const Swift::ParserElement::ref &element, const std::string xmlns); #endif