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-19 23:05:11 +02:00

17 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