diff options
Diffstat (limited to 'libodb/odb/details/meta/remove-pointer.hxx')
-rw-r--r-- | libodb/odb/details/meta/remove-pointer.hxx | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libodb/odb/details/meta/remove-pointer.hxx b/libodb/odb/details/meta/remove-pointer.hxx new file mode 100644 index 0000000..9963fd7 --- /dev/null +++ b/libodb/odb/details/meta/remove-pointer.hxx @@ -0,0 +1,32 @@ +// file : odb/details/meta/remove-pointer.hxx +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_META_REMOVE_POINTER_HXX +#define ODB_DETAILS_META_REMOVE_POINTER_HXX + +#include <odb/pre.hxx> + +namespace odb +{ + namespace details + { + namespace meta + { + template <typename X> + struct remove_pointer + { + typedef X result; + }; + + template <typename X> + struct remove_pointer<X*> + { + typedef X result; + }; + } + } +} + +#include <odb/post.hxx> + +#endif // ODB_DETAILS_META_REMOVE_POINTER_HXX |