00001 #ifndef _EXCEPTION_H 00002 #define _EXCEPTION_H 00003 00004 #include <time.h> 00005 00006 00007 class Exception 00008 { 00009 public: 00010 Exception(); 00011 virtual ~Exception(); 00012 00013 time_t GetTime() { return m_t; } 00014 00015 private: 00016 time_t m_t; 00017 }; 00018 00019 00020 #endif // _EXCEPTION_H
1.3.6
|
|