2
2b|!2b==?
I have the ff template class:
template <class T1, class T2> class Periodic ;
I have two questions/problems
Q1).
I want to specialize it further into two template classes:
Periodic<Class1, T2> //specialized for class1
Periodic<Class2, T2> //specialized for class2
Q2)
Furthermore, I would like to typedef these new classes, e.g.
typedef Periodic<Class1, T2> MyTemplate1 ;
Is this possible ?
template <class T1, class T2> class Periodic ;
I have two questions/problems
Q1).
I want to specialize it further into two template classes:
Periodic<Class1, T2> //specialized for class1
Periodic<Class2, T2> //specialized for class2
Q2)
Furthermore, I would like to typedef these new classes, e.g.
typedef Periodic<Class1, T2> MyTemplate1 ;
Is this possible ?