Guest User

Untitled

a guest
Dec 11th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2. #include <new>
  3.  
  4. template <typename T> class A {
  5.     public : T valami;
  6.     };
  7.    
  8. template <typename A>class B {
  9.     public : B () {
  10.         };
  11.     public : ~B () {
  12.         };
  13.     public : void get(A& a) {
  14.         return;
  15.         };
  16.     }; 
  17.    
  18. int main() {
  19.  
  20.     return 0;
  21.     }
Add Comment
Please, Sign In to add comment