bwukki

Untitled

Apr 15th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #ifndef SETS_H
  2. #define SETS_H
  3. #include <vector>
  4. #include <iostream>
  5.  
  6. class sets
  7. {
  8.     public:
  9.         sets();
  10.         sets(const std::vector<int>&);
  11.         ~sets();
  12.  
  13.         printNum();
  14.  
  15.     private:
  16.         std::vector<int> num;
  17.         std::vector<bool> num2;
  18. };
  19.  
  20. #endif // SETS_H
Add Comment
Please, Sign In to add comment