mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-01 22:17:59 +02:00
23 lines
233 B
C++
23 lines
233 B
C++
|
|
|
|
class Vector {
|
|
void* arr;
|
|
int size;
|
|
|
|
Vector() {
|
|
size = 0;
|
|
arr = nullptr;
|
|
}
|
|
|
|
void add(void* data) {
|
|
//resize
|
|
//insert
|
|
}
|
|
|
|
void remove() {
|
|
//resize array
|
|
}
|
|
};
|
|
|
|
|