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

18 lines
438 B
C++
Raw Normal View History

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