#ifndef GENERS_IOISANYPTR_HH_ #define GENERS_IOISANYPTR_HH_ #include "geners/CPP11_type_traits.hh" #include "geners/IOIsSharedPtr.hh" #include "geners/IOIsIOPtr.hh" namespace gs { // Here we are taking into account only the types of pointers // known to the I/O system template struct IOIsAnyPtr { static const bool value = (CPP11_is_pointer::value || IOIsSharedPtr::value || IOIsIOPtr::value); }; } #endif // GENERS_IOISANYPTR_HH_