This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/src/Plateau.cpp

16 lines
267 B
C++
Raw Normal View History

#include "../includes/Plateau.hpp"
Plateau::Plateau() { std::cout << "plateau\n"; }
Plateau::~Plateau() {}
Plateau::Plateau(const Plateau &) {}
const Plateau &Plateau::operator=(const Plateau &src) {
if (this == &src) {
return *this;
}
return *this;
}