diff options
author | randomdan <randomdan@localhost> | 2010-04-02 01:05:25 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2010-04-02 01:05:25 +0000 |
commit | 1ede41e012f7363a0d2804e70be0f6c772997e82 (patch) | |
tree | 86671e425d8f66fa16ce1989dbdc4fac45853295 /libodbcpp/column.h | |
parent | Lots of little fixes (diff) | |
download | libdbpp-odbc-1ede41e012f7363a0d2804e70be0f6c772997e82.tar.bz2 libdbpp-odbc-1ede41e012f7363a0d2804e70be0f6c772997e82.tar.xz libdbpp-odbc-1ede41e012f7363a0d2804e70be0f6c772997e82.zip |
lots of gcc warning fixes and a few newbies
Diffstat (limited to 'libodbcpp/column.h')
-rw-r--r-- | libodbcpp/column.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libodbcpp/column.h b/libodbcpp/column.h index 87c7edf..acc6904 100644 --- a/libodbcpp/column.h +++ b/libodbcpp/column.h @@ -21,6 +21,7 @@ namespace ODBC { operator std::string () const; operator String () const; operator const struct tm & () const; + virtual void rebind(Command *, unsigned int col) const = 0; const unsigned int colNo; const String name; @@ -33,6 +34,7 @@ namespace ODBC { public: _Column(String, unsigned int); ~_Column() {} + void rebind(Command *, unsigned int col) const; }; } |