diff options
Diffstat (limited to 'project2/fileRows.cpp')
-rw-r--r-- | project2/fileRows.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/project2/fileRows.cpp b/project2/fileRows.cpp index 5c499ff..9c6a5fe 100644 --- a/project2/fileRows.cpp +++ b/project2/fileRows.cpp @@ -1,6 +1,9 @@ #include "fileRows.h" #include <stdexcept> +ElementLoaderImpl<_FileIterate> fileiterateLoader("fileiterate"); +ElementLoaderImpl<_FileView> fileviewLoader("fileview"); + _FileRows::_FileRows(const xmlpp::Element * p) : path(p->get_attribute_value("path")), fieldSep(p->get_attribute_value("fieldSep")[0]), @@ -20,6 +23,11 @@ _FileRows::~_FileRows() { } +void +_FileRows::loadComplete() +{ +} + unsigned int _FileRows::columnCount() const { |