00001 00005 #ifndef Time_h 00006 #define Time_h 00007 00008 class Time { 00009 public: 00010 static double currentSeconds(); 00011 private: 00012 Time(); 00013 Time(const Time&); 00014 Time& operator=(const Time&); 00015 00016 static void initialize(); 00017 }; 00018 00019 #endif