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