diff options
Diffstat (limited to 'cpp/test/IcePack/simple/TestI.cpp')
-rw-r--r-- | cpp/test/IcePack/simple/TestI.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp/test/IcePack/simple/TestI.cpp b/cpp/test/IcePack/simple/TestI.cpp new file mode 100644 index 00000000000..5bfb9d922f8 --- /dev/null +++ b/cpp/test/IcePack/simple/TestI.cpp @@ -0,0 +1,23 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <TestI.h> + +TestI::TestI(const Ice::ObjectAdapterPtr& adapter) : + _adapter(adapter) +{ +} + +void +TestI::shutdown() +{ + _adapter->getCommunicator()->shutdown(); +} |