summaryrefslogtreecommitdiff
path: root/project2/fileRows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'project2/fileRows.cpp')
-rw-r--r--project2/fileRows.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/project2/fileRows.cpp b/project2/fileRows.cpp
index f9bdebf..c42d6cf 100644
--- a/project2/fileRows.cpp
+++ b/project2/fileRows.cpp
@@ -1,4 +1,5 @@
#include "fileRows.h"
+#include "rowProcessor.h"
#include "xmlObjectLoader.h"
#include "exceptions.h"
@@ -6,7 +7,7 @@ ElementLoaderImpl<FileRows> filerowsLoader("filerows");
FileRows::FileRows(const xmlpp::Element * p) :
SourceObject(p),
- PerRowValues(p),
+ RowSet(p),
path(p->get_attribute_value("path")),
fieldSep(p->get_attribute_value("fieldSep")[0]),
quoteChar(p->get_attribute_value("quoteChar")[0]),
@@ -139,7 +140,7 @@ FileRows::getCurrentValue(const Glib::ustring & id) const
return **v;
}
}
- throw PerRowValues::FieldDoesNotExist();
+ throw RowSet::FieldDoesNotExist();
}
void