diff options
Diffstat (limited to 'project2/common/columns.h')
-rw-r--r-- | project2/common/columns.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/project2/common/columns.h b/project2/common/columns.h index 8b9b9b3..d0b62d9 100644 --- a/project2/common/columns.h +++ b/project2/common/columns.h @@ -1,7 +1,6 @@ #ifndef COLUMNS_H #define COLUMNS_H -#include <libxml++/nodes/element.h> #include "variables.h" #include <boost/multi_index_container.hpp> #include <boost/multi_index/member.hpp> @@ -9,10 +8,10 @@ class Column : public IntrusivePtrBase { public: - Column(unsigned int idx, const xmlpp::Element * p); + Column(unsigned int idx, ScriptNodePtr p); Column(unsigned int i, const Glib::ustring & n, const Variable & v = Variable(Null())); - static Column * make(unsigned int idx, const xmlpp::Element * p); + static Column * make(unsigned int idx, ScriptNodePtr p); const unsigned int idx; const Glib::ustring name; |