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