9 lines
128 B
C
9 lines
128 B
C
|
#include "Operator.h"
|
||
|
|
||
|
|
||
|
class Addition : public Operator{
|
||
|
public:
|
||
|
Addition();
|
||
|
std::string getLibelle();
|
||
|
float* calc();
|
||
|
};
|