25 lines
594 B
C++
25 lines
594 B
C++
#include "Soustraction.h"
|
|
|
|
|
|
/* [0] CONSTRUCTEUR
|
|
=========================================================*/
|
|
Soustraction::Soustraction(){
|
|
this->init(2);
|
|
}
|
|
|
|
/* [1] Renvoie le nom du type de calcul
|
|
=========================================================*/
|
|
std::string Soustraction::getLibelle(){
|
|
return "Soustraction";
|
|
}
|
|
|
|
/* [2] Effectue le calcul et renvoie le resultat
|
|
=========================================================*/
|
|
float* Soustraction::calc(){
|
|
this->result = (float*) malloc(1*sizeof(float));
|
|
|
|
this->result[0] = this->operands[0]-this->operands[1];
|
|
|
|
|
|
return this->result;
|
|
} |