
15 Jan
2008
15 Jan
'08
12:50 a.m.
"Hicham Mouline" <hicham@mouline.org> wrote in message news:20080114191355.0EA71200C2@ws6-7.us4.outblaze.com...
Hello,
I have: enum ParamType { FLAT, CURVE1D, CURVE2D };
template<ParamType r, ParamType q, ParamType v> class TIP: { };
I would like to explicitly write all the possible full specializations of TIP... template class TIP<FLAT, FLAT, FLAT>;
template<> class TIP<FLAT, FLAT, FLAT> {}; template<> class TIP<FLAT, FLAT, CURVE1D> {}; etc.
...
regards,