Guest User

Untitled

a guest
Jan 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class A {
  2. };
  3.  
  4. template <typename T>
  5. class B : public A {
  6. std::map<const char *, T> data;
  7. };
  8.  
  9. class C : public A {
  10. int i;
  11. };
  12.  
  13. class D : public B<char> {
  14. char c;
  15. };
  16.  
  17. class E : public B<int> {
  18. };
  19.  
  20. std::deque<A *> as;
Add Comment
Please, Sign In to add comment