That is what I get whenever I call any function within the SI class. what am I doing wrong? Here is the code(I am only showing the part that currently matters in this discussion):
1 2 3 4 5 6 7 8 9 10 11 12 13
int _tmain(int argc, _TCHAR* argv[]){
SI.SI();
bool cote = true;
while (cote == true) {
double Ret = ComputeAnswer(GetOperand(1), GetOperator(), GetOperand(2));
SI.Display("Result is: ", 3)
SI.Display(Ret);
if (SI.SendaReceiveYesorNoAnswer("\nContinue?\n") == true) {
SI.ClearOutput();
}
}
return 0;
}
Sounds like it's complaining that you're asking for a variable from an object, but you're using the class name to get it instead of the object variable.