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 --- lang/cpptour/abstract.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lang/cpptour/abstract.h (limited to 'lang/cpptour/abstract.h') diff --git a/lang/cpptour/abstract.h b/lang/cpptour/abstract.h new file mode 100644 index 0000000..71191d9 --- /dev/null +++ b/lang/cpptour/abstract.h @@ -0,0 +1,18 @@ +#include "Vector.h" + +class Container { +public: + virtual double& operator[] (int) = 0; + virtual int size () const = 0; + virtual ~Container () {} +}; + +class Vector_container : public Container { + Vector v; +public: + Vector_container (int); + ~Vector_container (); + + double& operator[] (int); + int size () const; +}; -- cgit 1.4.1