#ifndef USER_H #define USER_H #include #include #include #include #include #include #include #include #include using Poco::XML::DOMParser; using Poco::XML::InputSource; using Poco::XML::Document; using Poco::XML::NodeIterator; using Poco::XML::NodeFilter; using Poco::XML::Node; using Poco::XML::AutoPtr; using Poco::Exception; namespace plexclient { class user { public: user(std::istream *response); ~user(); std::string authenticationToken; protected: private: }; } #endif // USER_H