summaryrefslogtreecommitdiff
path: root/project2/view.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'project2/view.hpp')
-rw-r--r--project2/view.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/project2/view.hpp b/project2/view.hpp
index be15eb5..820360f 100644
--- a/project2/view.hpp
+++ b/project2/view.hpp
@@ -30,3 +30,38 @@ _GenericView<Driver>::rowReady() const
executeChildren(record);
}
+template <class Driver>
+unsigned int
+_GenericView<Driver>:: columnCount() const
+{
+ return Driver::columnCount();
+}
+
+template <class Driver>
+void
+_GenericView<Driver>:: loadComplete()
+{
+ Driver::loadComplete();
+}
+
+template <class Driver>
+const Glib::ustring &
+_GenericView<Driver>:: getCurrentValue(const unsigned int id) const
+{
+ return Driver::getCurrentValue(id);
+}
+
+template <class Driver>
+const Glib::ustring &
+_GenericView<Driver>:: getCurrentValue(const Glib::ustring & id) const
+{
+ return Driver::getCurrentValue(id);
+}
+
+template <class Driver>
+const Glib::ustring &
+_GenericView<Driver>:: getColumnName(const unsigned int id) const
+{
+ return Driver::getColumnName(id);
+}
+