Apache Log4cxx Version 1.0.0
|
Concrete class for formatting and parsing dates in a locale-sensitive manner. More...
#include <simpledateformat.h>
Public Member Functions | |
SimpleDateFormat (const LogString &pattern) | |
Constructs a DateFormat using the given pattern and the default time zone. | |
SimpleDateFormat (const LogString &pattern, const std::locale *locale) | |
~SimpleDateFormat () | |
virtual void | format (LogString &s, log4cxx_time_t tm, log4cxx::helpers::Pool &p) const |
Formats an log4cxx_time_t into a date/time string. | |
void | setTimeZone (const TimeZonePtr &zone) |
Set time zone. | |
Public Member Functions inherited from log4cxx::helpers::DateFormat | |
virtual | ~DateFormat () |
Destructor. | |
virtual void | format (LogString &s, log4cxx_time_t tm, log4cxx::helpers::Pool &p) const =0 |
Formats an log4cxx_time_t into a date/time string. | |
virtual void | setTimeZone (const TimeZonePtr &zone) |
Sets the time zone. | |
virtual void | numberFormat (LogString &s, int n, log4cxx::helpers::Pool &p) const |
Format an integer consistent with the format method. | |
Public Member Functions inherited from log4cxx::helpers::Object | |
virtual | ~Object () |
virtual const helpers::Class & | getClass () const =0 |
virtual bool | instanceof (const Class &clazz) const =0 |
virtual const void * | cast (const Class &clazz) const =0 |
Additional Inherited Members | |
Protected Member Functions inherited from log4cxx::helpers::DateFormat | |
DateFormat () | |
Constructor. | |
Concrete class for formatting and parsing dates in a locale-sensitive manner.
log4cxx::helpers::SimpleDateFormat::SimpleDateFormat | ( | const LogString & | pattern | ) |
Constructs a DateFormat using the given pattern and the default time zone.
pattern | the pattern describing the date and time format |
log4cxx::helpers::SimpleDateFormat::SimpleDateFormat | ( | const LogString & | pattern, |
const std::locale * | locale | ||
) |
log4cxx::helpers::SimpleDateFormat::~SimpleDateFormat | ( | ) |
|
virtual |
Formats an log4cxx_time_t into a date/time string.
s | string to which the date/time string is appended. |
tm | date to be formatted. |
p | memory pool used during formatting. |
Implements log4cxx::helpers::DateFormat.
|
virtual |