added Environment::nodeId()

This commit is contained in:
Guenter Obiltschnig
2008-09-18 15:49:05 +00:00
parent b5b35cb173
commit 5ae8225ece
17 changed files with 359 additions and 236 deletions

View File

@@ -1,7 +1,7 @@
//
// CoreTest.cpp
//
// $Id: //poco/svn/Foundation/testsuite/src/CoreTest.cpp#2 $
// $Id: //poco/1.3/Foundation/testsuite/src/CoreTest.cpp#4 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
@@ -143,6 +143,7 @@ void CoreTest::testEnvironment()
std::cout << "OS Version: " << Environment::osVersion() << std::endl;
std::cout << "OS Architecture: " << Environment::osArchitecture() << std::endl;
std::cout << "Node Name: " << Environment::nodeName() << std::endl;
std::cout << "Node ID: " << Environment::nodeId() << std::endl;
}