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/Consultant.hpp

18 lines
410 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#ifndef TP5_CONSULTANT_HPP
#define TP5_CONSULTANT_HPP 1
#include <iostream>
class Consultant {
friend std::ostream &operator<<(std::ostream &, const Consultant &);
public:
Consultant(); // constructor
virtual ~Consultant(); // destructor
Consultant(const Consultant &); // copy constructor
const Consultant &operator=(const Consultant &); // copy assignement
};
#endif