17 lines
430 B
C++
17 lines
430 B
C++
#ifndef TP5_GESTIONNAIRE_HPP
|
|
#define TP5_GESTIONNAIRE_HPP 1
|
|
|
|
#include <iostream>
|
|
|
|
class Gestionnaire {
|
|
friend std::ostream &operator<<(std::ostream &, const Gestionnaire &);
|
|
|
|
public:
|
|
Gestionnaire(); // constructor
|
|
virtual ~Gestionnaire(); // destructor
|
|
|
|
Gestionnaire(const Gestionnaire &); // copy constructor
|
|
const Gestionnaire &operator=(const Gestionnaire &); // copy assignement
|
|
};
|
|
|
|
#endif
|