/*-------------------------------------------------- header file for function is_safe created by st10 at Mon Mar 8 13:56:27 PST 2010 --------------------------------------------------*/ #ifndef is_safe_H #define is_safe_H #include <string> using namespace std; const int MIN_SAFE = 50; const int MAX_SAFE = 100; bool is_safe(double temp); #endif