Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef ARRAY_H
- #define ARRAY_H
- #include<vector>
- class Array
- {
- int n;
- int* values;
- static int objectNumber;
- static std::vector<Array*> objects;
- public:
- Array(int);
- ~Array();
- static void inc(int);
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement