#include "Operator.h"
class Addition : public Operator{
public:
Addition();
std::string getLibelle();
float* calc();
};