diff options
Diffstat (limited to 'cpp/test/IceGrid/activation/TestI.cpp')
-rw-r--r-- | cpp/test/IceGrid/activation/TestI.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp/test/IceGrid/activation/TestI.cpp b/cpp/test/IceGrid/activation/TestI.cpp new file mode 100644 index 00000000000..f8b3f166945 --- /dev/null +++ b/cpp/test/IceGrid/activation/TestI.cpp @@ -0,0 +1,38 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <TestI.h> + +using namespace Test; + +TestI::TestI(const Ice::ObjectAdapterPtr& adapter) : + _adapter(adapter), + _failed(false) +{ +} + +void +TestI::fail(const Ice::Current&) +{ + _failed = true; + _adapter->getCommunicator()->shutdown(); +} + +void +TestI::shutdown(const Ice::Current&) +{ + _adapter->getCommunicator()->shutdown(); +} + +bool +TestI::isFailed() const +{ + return _failed; +} |