diff options
Diffstat (limited to 'odb/details/shared-ptr-fwd.hxx')
-rw-r--r-- | odb/details/shared-ptr-fwd.hxx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/odb/details/shared-ptr-fwd.hxx b/odb/details/shared-ptr-fwd.hxx new file mode 100644 index 0000000..4483b90 --- /dev/null +++ b/odb/details/shared-ptr-fwd.hxx @@ -0,0 +1,26 @@ +// file : odb/details/shared-ptr-fwd.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_SHARED_PTR_FWD_HXX +#define ODB_DETAILS_SHARED_PTR_FWD_HXX + +#include <odb/pre.hxx> + +#include <odb/details/shared-ptr/counter-type.hxx> + +namespace odb +{ + namespace details + { + template <typename X> + class shared_ptr; + + class shared_base; + } +} + +#include <odb/post.hxx> + +#endif // ODB_DETAILS_SHARED_PTR_FWD_HXX |