diff options
author | randomdan <randomdan@localhost> | 2011-12-14 21:42:31 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-12-14 21:42:31 +0000 |
commit | 8a7980bff41ccb8dc42b18eb1edd4b3938977fc3 (patch) | |
tree | 4b0a3414ba881a3118630c41ca24129d23f996df /project2/common/rowView.h | |
parent | Don't write JSON numbers in scientific notation, use native C++ boolalpha for... (diff) | |
download | project2-8a7980bff41ccb8dc42b18eb1edd4b3938977fc3.tar.bz2 project2-8a7980bff41ccb8dc42b18eb1edd4b3938977fc3.tar.xz project2-8a7980bff41ccb8dc42b18eb1edd4b3938977fc3.zip |
Pluggable script engines
XML script parser moved to XML module
Script parsing object multiple instantiation bug fix
Scripts changed to match new standardized format and layout
Diffstat (limited to 'project2/common/rowView.h')
-rw-r--r-- | project2/common/rowView.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/project2/common/rowView.h b/project2/common/rowView.h index 558284c..4b90884 100644 --- a/project2/common/rowView.h +++ b/project2/common/rowView.h @@ -1,7 +1,6 @@ #ifndef ROWVIEW_H #define ROWVIEW_H -#include <libxml++/nodes/element.h> #include <boost/intrusive_ptr.hpp> #include "rowProcessor.h" #include "view.h" @@ -9,7 +8,7 @@ /// Project2 component to create output based on a records in a row set class RowView : public View, public RowProcessor { public: - RowView(const xmlpp::Element *); + RowView(ScriptNodePtr); virtual ~RowView(); void loadComplete(const CommonObjects *); |