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