diff options
Diffstat (limited to 'project2/xmlPresenter.h')
-rw-r--r-- | project2/xmlPresenter.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/project2/xmlPresenter.h b/project2/xmlPresenter.h index ade2aaa..72fc3aa 100644 --- a/project2/xmlPresenter.h +++ b/project2/xmlPresenter.h @@ -16,10 +16,17 @@ class XmlPresenter : public Presenter { virtual XmlDocumentPtr getDataDocument() const; + protected: + xmlpp::DomParser present; + + public: const Glib::ustring responseRootNodeName; const Glib::ustring responseStyle; const Glib::ustring contentType; + protected: + OrderedParamCheckers parameterChecks; + private: XmlDocumentPtr responseDoc; mutable std::vector<xmlpp::Element *> nodeStack; |