00001 #ifndef RGMA_DATE_FORMAT_H 00002 #define RGMA_DATE_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 RGMADateFormat : public DateFormat 00023 { 00024 public: 00025 RGMADateFormat() 00026 : DateFormat(_T("%Y-%m-%d")) {} 00027 }; 00028 } 00029 } 00030 #endif