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