summaryrefslogtreecommitdiff
path: root/project2/xml/rawView.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/xml/rawView.h')
-rw-r--r--project2/xml/rawView.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/project2/xml/rawView.h b/project2/xml/rawView.h
deleted file mode 100644
index 67d5628..0000000
--- a/project2/xml/rawView.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef RAWVIEW_H
-#define RAWVIEW_H
-
-#include <libxml++/nodes/element.h>
-#include <boost/intrusive_ptr.hpp>
-#include <map>
-#include "view.h"
-
-/// Project2 component to create output based on its own XML tree node
-class RawView : public View {
- public:
- RawView(ScriptNodePtr p);
- void execute(const MultiRowSetPresenter *) const;
-
- private:
- void copyNode(const Presenter *, const xmlpp::Element *) const;
- const xmlpp::Element * copyRoot;
-};
-
-#endif
-
-