#include <mrpt/utils/TTypeName.h>
#include <list>
#include <vector>
#include <deque>
#include <set>
#include <map>
Go to the source code of this file.
|
namespace | mrpt |
| This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
|
|
namespace | mrpt::utils |
| Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
|
|
◆ MRPT_DECLARE_TTYPENAME_CONTAINER
#define MRPT_DECLARE_TTYPENAME_CONTAINER |
( |
|
_CONTAINER | ) |
|
Value: template< typename V > \
struct TTypeName <_CONTAINER<V> > { \
static std::string get() { \
return std::string( #_CONTAINER )+std::string("<")+std::string( TTypeName<V>::get() ) + std::string(">"); \
} \
};
Definition at line 30 of file TTypeName_impl.h.
◆ MRPT_DECLARE_TTYPENAME_CONTAINER_ASSOC
#define MRPT_DECLARE_TTYPENAME_CONTAINER_ASSOC |
( |
|
_CONTAINER | ) |
|
Value: template< typename K, typename V > \
struct TTypeName <_CONTAINER<K,V> > { \
static std::string get() { \
return std::string( #_CONTAINER )+std::string("<")+std::string( TTypeName<K>::get() )+ std::string(",")+std::string( TTypeName<V>::get() )+std::string(">"); \
} \
};
Definition at line 43 of file TTypeName_impl.h.