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
300 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() {}
RunProjet::RunProjet(const RunProjet &) {}
const RunProjet &RunProjet::operator=(const RunProjet &src) {
if (this == &src) {
return *this;
}
return *this;
}