http://www.adp-gmbh.ch/cpp/templates/static_members.html makes it clear what I need to do - if the template has a single parameter.
What if it had two?
template <typename T, typename T2> class X {
public:
static int st_;
};
How would I template the static memebr data?
template <typename T, typename T2> int, int X<T, T2>::st_;
or
template <typename T, typename T2> int int X<T, T2>::st_;
or what?
I think that my problem is knowinng what to do with the two real types (both int here).
After templating, how do I declare my static member variable?