$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Chris Weed (chrisweed_at_[hidden])
Date: 2006-06-14 15:55:02
Hi,
I am trying to use the preprocessor iteration ability to create
typedef permutations.
I want to do something like use the following set of types
TYPE1: char int float
TYPE2: char int float double
to generate permutations of MyClass<TYPE1,TYPE2> such as
typedef MyClass<char,char> Mycc;
typedef MyClass<char,int> Myci;
typedef MyClass<char,float> Mycf;
...
Any help would be greatly appreciated.
Thanks,
Chris