Hello everybody.Say i have a template declaration of a class:
template <DWORD Style=BS_DEFPUSHBUTTON,
LPSTR Type="button">
class WndObj {
WndObj ();
};
Now in the cpp file the definition should look something like this:
template <DWORD,LPSTR>WndObj<>::WndObj () {}
//so i can go ahead and
typedef WndObj<> Button;
I get an unreslved external error.Any suggestions?
Thank you.