integrated improvements from 1.3.4 (NumberFormatter::append(), DateTimeFormatter::append()

This commit is contained in:
Guenter Obiltschnig
2009-02-21 10:59:58 +00:00
parent 60e1433f51
commit fa1658b23a
23 changed files with 1173 additions and 598 deletions

View File

@@ -1,7 +1,7 @@
//
// SystemConfiguration.h
//
// $Id: //poco/svn/Util/include/Poco/Util/SystemConfiguration.h#1 $
// $Id: //poco/Main/Util/include/Poco/Util/SystemConfiguration.h#4 $
//
// Library: Util
// Package: Configuration
@@ -60,6 +60,8 @@ class Util_API SystemConfiguration: public AbstractConfiguration
/// - system.currentDir: the current working directory
/// - system.homeDir: the user's home directory
/// - system.tempDir: the system's temporary directory
/// - system.dateTime: the current UTC date and time, formatted in ISO 8601 format.
/// - system.pid: the current process ID.
/// - system.env.<NAME>: the environment variable with the given <NAME>.
///
/// An attempt to set a system variable will result in an
@@ -88,6 +90,8 @@ private:
static const std::string CURRENTDIR;
static const std::string HOMEDIR;
static const std::string TEMPDIR;
static const std::string DATETIME;
static const std::string PID;
static const std::string ENV;
};