diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-17 11:35:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-17 11:35:55 +0200 |
commit | c8eda24a4ce5192ea502194387e5053098616561 (patch) | |
tree | 0d3d6810b61a597f11cd6e6e460f5dd70a0e60ec | |
parent | 61e6f0fded93f1e2105d7f4734b280712afe0c59 (diff) |
Rename odbc.hxx to mssql.hxx for consistency
-rw-r--r-- | odb/mssql/auto-handle.cxx | 2 | ||||
-rw-r--r-- | odb/mssql/connection.cxx | 2 | ||||
-rw-r--r-- | odb/mssql/database.cxx | 2 | ||||
-rw-r--r-- | odb/mssql/error.cxx | 4 | ||||
-rw-r--r-- | odb/mssql/mssql.hxx (renamed from odb/mssql/odbc.hxx) | 10 |
5 files changed, 10 insertions, 10 deletions
diff --git a/odb/mssql/auto-handle.cxx b/odb/mssql/auto-handle.cxx index 733ec92..118b5b6 100644 --- a/odb/mssql/auto-handle.cxx +++ b/odb/mssql/auto-handle.cxx @@ -3,7 +3,7 @@ // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : ODB NCUEL; see accompanying LICENSE file -#include <odb/mssql/odbc.hxx> +#include <odb/mssql/mssql.hxx> #include <odb/mssql/auto-handle.hxx> namespace odb diff --git a/odb/mssql/connection.cxx b/odb/mssql/connection.cxx index ff62c49..50bc8db 100644 --- a/odb/mssql/connection.cxx +++ b/odb/mssql/connection.cxx @@ -7,7 +7,7 @@ //#include <string> -#include <odb/mssql/odbc.hxx> +#include <odb/mssql/mssql.hxx> #include <odb/mssql/database.hxx> #include <odb/mssql/connection.hxx> //#include <odb/mssql/transaction.hxx> diff --git a/odb/mssql/database.cxx b/odb/mssql/database.cxx index 51010ac..a22ae9b 100644 --- a/odb/mssql/database.cxx +++ b/odb/mssql/database.cxx @@ -7,7 +7,7 @@ #include <sstream> -#include <odb/mssql/odbc.hxx> +#include <odb/mssql/mssql.hxx> #include <odb/mssql/database.hxx> #include <odb/mssql/exceptions.hxx> #include <odb/mssql/error.hxx> diff --git a/odb/mssql/error.cxx b/odb/mssql/error.cxx index 0d26ae8..dd94156 100644 --- a/odb/mssql/error.cxx +++ b/odb/mssql/error.cxx @@ -3,9 +3,9 @@ // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file -#include <odb/mssql/odbc.hxx> +#include <odb/mssql/mssql.hxx> #include <odb/mssql/error.hxx> -//#include <odb/mssql/connection.hxx> +#include <odb/mssql/connection.hxx> #include <odb/mssql/exceptions.hxx> using namespace std; diff --git a/odb/mssql/odbc.hxx b/odb/mssql/mssql.hxx index 7276a40..80cff65 100644 --- a/odb/mssql/odbc.hxx +++ b/odb/mssql/mssql.hxx @@ -1,17 +1,17 @@ -// file : odb/mssql/odbc.hxx +// file : odb/mssql/mssql.hxx // author : Constantin Michael <constantin@codesynthesis.com> // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : ODB NCUEL; see accompanying LICENSE file -#ifndef ODB_MSSQL_ODBC_HXX -#define ODB_MSSQL_ODBC_HXX +#ifndef ODB_MSSQL_MSSQL_HXX +#define ODB_MSSQL_MSSQL_HXX #include <odb/pre.hxx> // This file should always be included before mssql-fwd.hxx. // #ifdef ODB_MSSQL_MSSQL_FWD_HXX -# error odb/mssql/mssql-fwd.hxx included before odb/mssql/odbc.hxx +# error odb/mssql/mssql-fwd.hxx included before odb/mssql/mssql.hxx #endif #ifdef _WIN32 @@ -28,4 +28,4 @@ #include <odb/post.hxx> -#endif // ODB_MSSQL_ODBC_HXX +#endif // ODB_MSSQL_MSSQL_HXX |