$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Hicham Mouline (hicham_at_[hidden])
Date: 2008-01-14 14:13:55
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>;
...
regards,