From 7e704a7e6e57cf877614fd762d4667ef32be2eea Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 16 Nov 2011 10:59:14 +0200 Subject: Add build infrastructure, options file and exceptions implementation --- odb/mssql/forward.hxx | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 odb/mssql/forward.hxx (limited to 'odb/mssql/forward.hxx') diff --git a/odb/mssql/forward.hxx b/odb/mssql/forward.hxx new file mode 100644 index 0000000..c81ebf9 --- /dev/null +++ b/odb/mssql/forward.hxx @@ -0,0 +1,63 @@ +// file : odb/mssql/forward.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : ODB NCUEL; see accompanying LICENSE file + +#ifndef ODB_MSSQL_FORWARD_HXX +#define ODB_MSSQL_FORWARD_HXX + +#include + +#include + +namespace odb +{ + namespace mssql + { + class database; + class connection; + typedef details::shared_ptr connection_ptr; + class connection_factory; + class statement; + class transaction; + class tracer; + class query; + + // Implementation details. + // + enum statement_kind + { + statement_select, + statement_insert, + statement_update + }; + + class binding; + class select_statement; + + template + class object_statements; + + template + class object_statements_no_id; + + template + class view_statements; + + template + class container_statements; + } + + namespace details + { + template <> + struct counter_type + { + typedef shared_base counter; + }; + } +} + +#include + +#endif // ODB_MSSQL_FORWARD_HXX -- cgit v1.1