From 67bb27e9f5beec4d8ca0a6c29f045d5f23d6f40f Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 28 Feb 2021 17:25:57 +0700 Subject: [lang] Reorganize language learning archive --- cpptour/Vector.h | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 cpptour/Vector.h (limited to 'cpptour/Vector.h') diff --git a/cpptour/Vector.h b/cpptour/Vector.h deleted file mode 100644 index 8508503..0000000 --- a/cpptour/Vector.h +++ /dev/null @@ -1,12 +0,0 @@ -class Vector { -public: - Vector (int s); - Vector (std::initializer_list); - ~Vector (); - double& operator[] (int i); - int size () noexcept; - void push_back (double); -private: - double* elem; - int sz; -}; -- cgit 1.4.1