@ -1,22 +1,22 @@
# ifndef TASCHENRECHNER_H
# ifndef TASCHENRECHNER_H
# define TASCHENRECHNER_H
# define TASCHENRECHNER_H
/ / add function
/ / add function
double add ( double a , double b ) ;
double add ( double a , double b ) ;
/ / minus function
/ / minus function
double minus ( double a , double b ) ;
double minus ( double a , double b ) ;
/ / multiply function
/ / multiply function
double multiply ( double a , double b ) ;
double multiply ( double a , double b ) ;
/ / divide function
/ / divide function
double divide ( double a , double b ) ;
double divide ( double a , double b ) ;
/ / get input and check if its a number
/ / get input and check if its a number
double testForNumber ( ) ;
double testForNumber ( ) ;
/ / get input and check if its a operator
/ / get input and check if its a operator
char testForOperator ( ) ;
char testForOperator ( ) ;
/ / Square root function
/ / Square root function
@ -56,7 +56,7 @@ int mode(int userChoice);
int displayMenu ( ) ;
int displayMenu ( ) ;
/ / Conversion Functions
/ / Conversion Functions
double ConMeter ( double meter , int startingUnit , int endingUnit ) ;
double ConMeter ( double meter , int startingUnit , int endingUnit ) ;
double ConMeterToFoot ( double distance , int startingUnit , int endingUnit ) ;
double ConMeterToFoot ( double distance , int startingUnit , int endingUnit ) ;