diff options
Diffstat (limited to 'libodbcpp/odbc-bind.h')
-rw-r--r-- | libodbcpp/odbc-bind.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libodbcpp/odbc-bind.h b/libodbcpp/odbc-bind.h index 7a982e6..e1dd57f 100644 --- a/libodbcpp/odbc-bind.h +++ b/libodbcpp/odbc-bind.h @@ -6,15 +6,14 @@ namespace ODBC { class Bind { - public: - virtual ~Bind() = default; + public: + virtual ~Bind() = default; - virtual SQLSMALLINT ctype() const = 0; // The C type ID - virtual SQLULEN size() const = 0; // The size of the data - protected: - mutable SQLLEN bindLen; // How much data the driver wants to store + virtual SQLSMALLINT ctype() const = 0; // The C type ID + virtual SQLULEN size() const = 0; // The size of the data + protected: + mutable SQLLEN bindLen; // How much data the driver wants to store }; } #endif - |