18 lines
428 B
C++
18 lines
428 B
C++
|
#ifndef TP5_RUNPROJET_HPP
|
||
|
#define TP5_RUNPROJET_HPP 1
|
||
|
|
||
|
#include "ProtoProjet.hpp"
|
||
|
|
||
|
class RunProjet : public ProtoProjet {
|
||
|
friend std::ostream &operator<<(std::ostream &, const RunProjet &);
|
||
|
|
||
|
public:
|
||
|
RunProjet(); // constructor
|
||
|
virtual ~RunProjet(); // destructor
|
||
|
|
||
|
RunProjet(const RunProjet &); // copy constructor
|
||
|
const RunProjet &operator=(const RunProjet &); // copy assignement
|
||
|
};
|
||
|
|
||
|
#endif
|