Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template<class A, class B>
- class CA
- {
- public:
- CA(){};
- ~CA(){};
- template<class C>
- class CB;
- };
- template<class A, class B>
- template<>
- class CA<A, B>::CB<B>
- {
- public:
- CB(){};
- ~CB(){};
- };
Advertisement
Add Comment
Please, Sign In to add comment