diff options
author | randomdan <randomdan@localhost> | 2010-12-18 02:04:56 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2010-12-18 02:04:56 +0000 |
commit | d043e9e80db2140bdea05b54bdd35ad7cddb13a0 (patch) | |
tree | 230e4e2665f9cc72d48860338038dc9ac7a281fa /project2/fileRows.cpp | |
parent | Remove the stupid _ naming convention (diff) | |
download | project2-d043e9e80db2140bdea05b54bdd35ad7cddb13a0.tar.bz2 project2-d043e9e80db2140bdea05b54bdd35ad7cddb13a0.tar.xz project2-d043e9e80db2140bdea05b54bdd35ad7cddb13a0.zip |
Do some renaming and reorganising at last
Diffstat (limited to 'project2/fileRows.cpp')
-rw-r--r-- | project2/fileRows.cpp | 5 |
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 |