00001 #ifndef RGMA_TIME_FORMAT_H 00002 #define RGMA_TIME_FORMAT_H 00003 00004 #include "log4cxx/helpers/dateformat.h" 00005 #include "log4cxx/helpers/timezone.h" 00006 00007 using log4cxx::helpers::DateFormat; 00008 using log4cxx::helpers::TimeZonePtr; 00009 00010 namespace rgma 00011 { 00012 namespace log4cpp 00013 { 00023 class RGMATimeFormat : public DateFormat 00024 { 00025 public: 00026 RGMATimeFormat() 00027 : DateFormat(_T("%H:%M:%S")) {} 00028 }; 00029 } 00030 } 00031 #endif