summaryrefslogtreecommitdiff
path: root/project2/rawView.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/rawView.h')
-rw-r--r--project2/rawView.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/project2/rawView.h b/project2/rawView.h
index 8909927..33d0d1d 100644
--- a/project2/rawView.h
+++ b/project2/rawView.h
@@ -12,7 +12,10 @@ class _RawView : public _View {
public:
_RawView(const xmlpp::Element * p);
void execute(xmlpp::Element *) const;
- const Glib::ustring & getCurrentValue(const Glib::ustring & id) const;
+ virtual unsigned int columnCount() const;
+ virtual const Glib::ustring & getColumnName(unsigned int col) const;
+ virtual const Glib::ustring & getCurrentValue(const Glib::ustring & id) const;
+ virtual const Glib::ustring & getCurrentValue(unsigned int col) const;
private:
const xmlpp::Element * copyRoot;
};