lab.cpp/ex3/Soustraction.h

9 lines
136 B
C
Raw Normal View History

2016-03-03 18:30:01 +00:00
#include "Operator.h"
class Soustraction : public Operator{
public:
Soustraction();
std::string getLibelle();
float* calc();
};