summaryrefslogtreecommitdiff
path: root/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'user.h')
-rw-r--r--user.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/user.h b/user.h
new file mode 100644
index 0000000..f264209
--- /dev/null
+++ b/user.h
@@ -0,0 +1,42 @@
+#ifndef USER_H
+#define USER_H
+
+#include <Poco/DOM/DOMParser.h>
+#include <Poco/DOM/Document.h>
+#include <Poco/DOM/NodeIterator.h>
+#include <Poco/DOM/NodeFilter.h>
+#include <Poco/DOM/AutoPtr.h>
+#include <Poco/SAX/InputSource.h>
+#include <Poco/Exception.h>
+#include <Poco/String.h>
+#include <iostream>
+
+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