trunk/branch integration: Enviroment::libraryVersion()

This commit is contained in:
Marian Krivos 2011-08-22 16:53:33 +00:00
parent c1ad08417c
commit fb0fabd43c

View File

@ -99,6 +99,19 @@ public:
/// Returns the number of processors installed in the system.
///
/// If the number of processors cannot be determined, returns 1.
static Poco::UInt32 libraryVersion();
/// Returns the POCO C++ Libraries version as a hexadecimal
/// number in format 0xAABBCCDD, where
/// - AA is the major version number,
/// - BB is the minor version number,
/// - CC is the revision number, and
/// - DD is the patch level number.
///
/// Some patch level ranges have special meanings:
/// - Dx mark development releases,
/// - Ax mark alpha releases, and
/// - Bx mark beta releases.
};