summaryrefslogtreecommitdiff
path: root/project2/fileRows.cpp
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2010-12-18 02:04:56 +0000
committerrandomdan <randomdan@localhost>2010-12-18 02:04:56 +0000
commitd043e9e80db2140bdea05b54bdd35ad7cddb13a0 (patch)
tree230e4e2665f9cc72d48860338038dc9ac7a281fa /project2/fileRows.cpp
parentRemove the stupid _ naming convention (diff)
downloadproject2-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.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