From 89ddd6821bb7ecb0c29077ea427df0cd86017e38 Mon Sep 17 00:00:00 2001 From: randomdan Date: Sun, 13 Jun 2010 15:25:33 +0000 Subject: Add support for composing Glib::ustrings from columns Break Project2 components down into generalised classes Tidy up code --- libodbcpp/column.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libodbcpp/column.h') diff --git a/libodbcpp/column.h b/libodbcpp/column.h index 9f3b93d..3b3370f 100644 --- a/libodbcpp/column.h +++ b/libodbcpp/column.h @@ -22,6 +22,8 @@ namespace ODBC { operator Glib::ustring () const; operator struct tm () const; virtual void rebind(Command *, unsigned int col) const = 0; + virtual Glib::ustring compose() const = 0; + virtual Glib::ustring compose(const Glib::ustring & fmt) const = 0; virtual int writeToBuf(char ** buf) const = 0; virtual int writeToBuf(char ** buf, const char * fmt) const = 0; bool isNull() const; @@ -38,6 +40,8 @@ namespace ODBC { _Column(const Glib::ustring &, unsigned int); ~_Column() {} void rebind(Command *, unsigned int col) const; + Glib::ustring compose() const; + Glib::ustring compose(const Glib::ustring & fmt) const; int writeToBuf(char ** buf) const; int writeToBuf(char ** buf, const char * fmt) const; }; -- cgit v1.2.3