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