diff options
Diffstat (limited to 'cpp/test/Ice/retry/TestI.h')
-rw-r--r-- | cpp/test/Ice/retry/TestI.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cpp/test/Ice/retry/TestI.h b/cpp/test/Ice/retry/TestI.h new file mode 100644 index 00000000000..0114b2365fd --- /dev/null +++ b/cpp/test/Ice/retry/TestI.h @@ -0,0 +1,21 @@ +// ********************************************************************** +// +// 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. +// +// ********************************************************************** + +#ifndef TEST_I_H +#define TEST_I_H + +#include <Test.h> + +class RetryI : public Test::Retry +{ + virtual void op(bool, const Ice::Current&); + virtual void shutdown(const Ice::Current&); +}; + +#endif |