#ifndef HEADER_SMART_VECTOR #define HEADER_SMART_VECTOR #include "vector.h" template class Smart_Vector : public Vector { public: Smart_Vector operator+(const Smart_Vector& other); Smart_Vector& operator+=(const Smart_Vector& other); }; #endif // HEADER_SMART_VECTOR