diff options
author | randomdan <randomdan@localhost> | 2006-07-08 16:32:05 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2006-07-08 16:32:05 +0000 |
commit | 2a1fa15d8baa4eda37e17b2e9362f8bde17a939d (patch) | |
tree | 09386e52320b7c52a521ab56fc7553896e639dcd /libodbcpp/string.h | |
download | libdbpp-odbc-2a1fa15d8baa4eda37e17b2e9362f8bde17a939d.tar.bz2 libdbpp-odbc-2a1fa15d8baa4eda37e17b2e9362f8bde17a939d.tar.xz libdbpp-odbc-2a1fa15d8baa4eda37e17b2e9362f8bde17a939d.zip |
libcodbcpp initial release
Diffstat (limited to 'libodbcpp/string.h')
-rw-r--r-- | libodbcpp/string.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libodbcpp/string.h b/libodbcpp/string.h new file mode 100644 index 0000000..d3c4d41 --- /dev/null +++ b/libodbcpp/string.h @@ -0,0 +1,21 @@ +#ifndef ODBC_STRING_H +#define ODBC_STRING_H + +#include <string> + +namespace ODBC { + class String : public std::basic_string<unsigned char> { + public: + String(const unsigned char *); + String(const char *); + String(std::basic_string<unsigned char>); + String(std::basic_string<char>); + String(); + operator unsigned char *() const; + + static String Format(const char *, ...); + }; +} + +#endif + |