Hi,
is it possible to have a template in a partial specialization? i want to
partialize a template by itself:
template <class PaintPolicy, class Base = window_base>
struct background_wnd : ...
{
};
template <class P, class B>
template <class PaintPolicy>
struct background_wnd<background_wnd : ...
{
};
i know it doesn't work (else i wouldn't post here
) but i hope you got
the idea what i want. i hope it's only a syntactical problem and it is
indeed possible somehow in c++
--
mfg Steven
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]