diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-08-09 14:46:06 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-08-09 14:46:06 +0000 |
commit | db3b68cb56c951f2f54fd63685039ab908acab06 (patch) | |
tree | a2fc0e7e9fde3634b96f6da41b268fb1582b4f44 /cpp/test/IcePack/deployer/TestI.cpp | |
parent | added dummy file (diff) | |
download | ice-db3b68cb56c951f2f54fd63685039ab908acab06.tar.bz2 ice-db3b68cb56c951f2f54fd63685039ab908acab06.tar.xz ice-db3b68cb56c951f2f54fd63685039ab908acab06.zip |
Added new IcePack test suite, add IcePack tracing properties, added IcePack
server shutdown.
Diffstat (limited to 'cpp/test/IcePack/deployer/TestI.cpp')
-rw-r--r-- | cpp/test/IcePack/deployer/TestI.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/test/IcePack/deployer/TestI.cpp b/cpp/test/IcePack/deployer/TestI.cpp new file mode 100644 index 00000000000..57245e39a69 --- /dev/null +++ b/cpp/test/IcePack/deployer/TestI.cpp @@ -0,0 +1,30 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// Mutable Realms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <TestI.h> + +TestI::TestI(const Ice::ObjectAdapterPtr& adapter, const Ice::PropertiesPtr& properties) : + _adapter(adapter), + _properties(properties) +{ +} + +void +TestI::shutdown(const Ice::Current&) +{ + _adapter->getCommunicator()->shutdown(); +} + +std::string +TestI::getProperty(const std::string& name, const Ice::Current&) +{ + return _properties->getProperty(name); +} |