template struct Poco::TypeAllReplacer
Overview
TypeAllReplacer replaces all the occurences of the type T in Head with type R. Moreā¦
Detailed Documentation
TypeAllReplacer replaces all the occurences of the type T in Head with type R.
Usage:
typedef TypeListType<char, int, float, int>::HeadType Type4; typedef TypeAllReplacer<Type4, int, double>::HeadType TypeR; (TypeR is a TypeList of char,double,float,double)