13 lines
No EOL
167 B
C++
13 lines
No EOL
167 B
C++
#ifndef HEADER_VECTOR
|
|
#define HEADER_VECTOR
|
|
|
|
class Vector{
|
|
public:
|
|
Vector();
|
|
~Vector();
|
|
void Affiche();
|
|
private:
|
|
int _value;
|
|
};
|
|
|
|
#endif //HEADER_VECTOR
|