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