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/RunProjet.hpp
2023-10-28 02:35:22 +02:00

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