Advertisement
stirante

array.h

Sep 14th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #ifndef ARRAY_H
  2. #define ARRAY_H
  3.  
  4. #include<vector>
  5.  
  6. class Array
  7. {
  8.     int n;
  9.     int* values;
  10.     static int objectNumber;
  11.     static std::vector<Array*> objects;
  12. public:
  13.     Array(int);
  14.     ~Array();
  15.     static void inc(int);
  16. };
  17.  
  18. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement