Advertisement
Redee

шаблон только на 2 типа ??

Jul 12th, 2015
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct A{ int a, b; };
  5.  
  6. struct B : public A{ int c; };
  7.  
  8. // чтобы создавалось D<A> или D<B> ТОЛЬКО !!!
  9. // чтобы нельзя было создать D<int>
  10. template<typename T>
  11. struct D
  12. {
  13.     T obj;
  14.     T getBase() { return obj; }
  15. };
  16.  
  17. void main()
  18. {
  19.     D<B> d;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement