Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4.  
  5. using namespace std;
  6.  
  7. template <class T>
  8. class Set
  9. {
  10. protected:
  11. T[] elements;
  12. public:
  13. Set(T[] &mass)
  14. {
  15. elements = new T[sizeof(mass)]
  16. }
  17. friend Set operator + (const Set& s1, const Set& s2)
  18. {
  19.  
  20. }
  21. frient Set operator - (const Set& s1, const Set& s2)
  22. {
  23.  
  24. }
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement