/* Self-expanding dynamic array implementation for OctaSTD. * * This file is part of OctaSTD. See COPYING.txt for futher information. */ #ifndef OCTASTD_VECTOR_H #define OCTASTD_VECTOR_H #include namespace octastd { template class vector { T *buf; size_t length, capacity; public: explicit vector(): buf(NULL), length(0), capacity(0) {} vector(const vector &v): buf(NULL), length(0), capacity(0) { *this = v; } ~vector() { } vector &operator=(const vector &v) { return *this; } }; } #endif