// // Created by Louis Gallet on 31/01/2025. // #include "TesteurXBots.h" TesteurXBots::TesteurXBots(X212 *x212Param, G990 *g990Param) { x212 = x212Param; g990 = g990Param; Compteur :: ajouterConstructeur(); } TesteurXBots::TesteurXBots(const TesteurXBots &other) { x212 = new X212(*other.x212); g990 = new G990(*other.g990); Compteur :: ajouterConstructeurCopie(); } TesteurXBots::~TesteurXBots() { delete x212; delete g990; Compteur :: ajouterDestructeur(); }