I have
template <typename A, typename B, typename C> class Template { public: static const size_t ZONE_X = 0; static const size_t ZONE_Y = 1; ... } What is the most elegant way I to access the static const variables from other templates that in my case are dependency injection or policy to this one? ... or I should just define the constants out of the template?
error C2955: 'Template' : use of class template requires template argument list