Boost logo

Boost Users :

From: Michael Gopshtein (mgopshtein_at_[hidden])
Date: 2008-01-15 02:50:36


"Hicham Mouline" <hicham_at_[hidden]> wrote in message
news:20080114191355.0EA71200C2_at_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,


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net