lab.cpp/ex3/Trinome.h

9 lines
126 B
C
Raw Normal View History

2016-03-04 07:49:31 +00:00
#include "Operator.h"
class Trinome : public Operator{
public:
Trinome();
std::string getLibelle();
float* calc();
};