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/src/RunProjet.cpp

16 lines
316 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#include "../includes/RunProjet.hpp"
RunProjet::RunProjet() { std::cout << "Hello, runProject!\n"; }
RunProjet::~RunProjet() {}
2023-10-27 19:27:53 +02:00
RunProjet::RunProjet(const RunProjet &) : ProtoProjet() {}
2023-10-19 23:05:11 +02:00
const RunProjet &RunProjet::operator=(const RunProjet &src) {
if (this == &src) {
return *this;
}
return *this;
}