16 lines
267 B
C++
16 lines
267 B
C++
|
#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;
|
||
|
}
|