#ifndef HEADER_VECTOR #define HEADER_VECTOR class Vector{ public: Vector(); ~Vector(); void Affiche(); private: int _value; }; #endif //HEADER_VECTOR