diff --git a/customVectorclass b/customVectorclass new file mode 100644 index 0000000..809559a --- /dev/null +++ b/customVectorclass @@ -0,0 +1,29 @@ +#include iostream + +using namespace std + +template +class vector { + + private: + vector myVector; + + public: + + void add(T thing) { + + myVector.push_back(thing); + + } + +}; + +int main() { + + vector newVector; + newVector.add(1); + + + + +}