diff options
Diffstat (limited to 'project2/rawView.h')
-rw-r--r-- | project2/rawView.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/project2/rawView.h b/project2/rawView.h index 3f0de83..5ccd02c 100644 --- a/project2/rawView.h +++ b/project2/rawView.h @@ -6,17 +6,15 @@ #include <map> #include "view.h" -class _RawView : public _View { +class RawView : public View { public: - _RawView(const xmlpp::Element * p); + RawView(const xmlpp::Element * p); void execute(const Presenter *) const; virtual void loadComplete(const CommonObjects *); private: void copyNode(const Presenter *, const xmlpp::Element *) const; const xmlpp::Element * copyRoot; }; -typedef boost::intrusive_ptr<_RawView> RawView; -typedef std::map<std::string, RawView> RawViews; #endif |