Guest User

Untitled

a guest
Jun 30th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. template<class A, class B>
  2. class CA
  3. {
  4.   public:
  5.     CA(){};
  6.     ~CA(){};
  7.     template<class C>
  8.     class CB;
  9.     CB<B> cb;
  10. };
  11.  
  12. template<class A, class B>
  13. template<class C>
  14. class CA<A, B>::CB
  15. {
  16.   public:
  17.     CB(){};
  18.     ~CB(){};
  19. };
Advertisement
Add Comment
Please, Sign In to add comment