/*-------------------------------------------------- header file for function is_safe created by st10 at Fri Oct 15 11:25:57 PDT 2010 --------------------------------------------------*/ #ifndef is_safe_H #define is_safe_H #include <string> using namespace std; const int MIN_UNSAFE = 100; bool is_safe(int temperature); #endif