#ifndef __JTOOLS__JMULTIPLEMAP__ #define __JTOOLS__JMULTIPLEMAP__ /** * \author mdejong */ namespace JTOOLS {} namespace JPP { using namespace JTOOLS; } namespace JTOOLS { /** * List of identical maps. */ template class JMap_t> struct JMultipleMap { typedef JMapList::typelist> typelist; }; /** * Terminator class of list of identical maps. */ template class JMap_t> struct JMultipleMap<1, JMap_t> { typedef JMapList typelist; }; } #endif