summaryrefslogtreecommitdiff
path: root/odb/mysql/query.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:03:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:03:19 +0200
commit4c8de7a0e8fa65d60b4b54d525c0b5ba43ac265a (patch)
tree84de015adcdd750fe7a3cf417ac856329a623ec1 /odb/mysql/query.hxx
parent35d912d70bc7073f173f22bb5948a00b3c4be3f8 (diff)
Move shared_ptr to the details namespace
Diffstat (limited to 'odb/mysql/query.hxx')
-rw-r--r--odb/mysql/query.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/mysql/query.hxx b/odb/mysql/query.hxx
index dd7e0cb..b09442c 100644
--- a/odb/mysql/query.hxx
+++ b/odb/mysql/query.hxx
@@ -13,13 +13,13 @@
#include <cstddef> // std::size_t
#include <odb/query.hxx>
-#include <odb/shared-ptr.hxx>
#include <odb/mysql/version.hxx>
#include <odb/mysql/forward.hxx>
#include <odb/mysql/traits.hxx>
#include <odb/details/buffer.hxx>
+#include <odb/details/shared-ptr.hxx>
namespace odb
{
@@ -45,7 +45,7 @@ namespace odb
const T& ref;
};
- struct query_param: shared_base
+ struct query_param: details::shared_base
{
virtual
~query_param ();
@@ -177,10 +177,10 @@ namespace odb
private:
void
- add (shared_ptr<query_param>);
+ add (details::shared_ptr<query_param>);
private:
- typedef std::vector<shared_ptr<query_param> > parameters_type;
+ typedef std::vector<details::shared_ptr<query_param> > parameters_type;
std::string clause_;
parameters_type parameters_;