18 lines
438 B
C++
18 lines
438 B
C++
|
#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
|