This repository has been archived on 2023-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
GestionProjet/includes/Gestionnaire.hpp

18 lines
430 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#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