26 lines
353 B
C++
26 lines
353 B
C++
//
|
|
// Created by Louis Gallet on 31/01/2025.
|
|
//
|
|
|
|
#ifndef TESTEURXBOTS_H
|
|
#define TESTEURXBOTS_H
|
|
#include "G990.h"
|
|
#include "X212.h"
|
|
|
|
|
|
class TesteurXBots {
|
|
private:
|
|
X212* x212;
|
|
G990* g990;
|
|
|
|
public:
|
|
|
|
TesteurXBots(X212* x212Param, G990* g990Param);
|
|
TesteurXBots(const TesteurXBots& other);
|
|
~TesteurXBots();
|
|
};
|
|
|
|
|
|
|
|
#endif //TESTEURXBOTS_H
|