diff options
Diffstat (limited to 'cpp/test/Ice/echo/Test.ice')
-rw-r--r-- | cpp/test/Ice/echo/Test.ice | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cpp/test/Ice/echo/Test.ice b/cpp/test/Ice/echo/Test.ice new file mode 100644 index 00000000000..8b1ad42eec5 --- /dev/null +++ b/cpp/test/Ice/echo/Test.ice @@ -0,0 +1,25 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2014 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. +// +// ********************************************************************** + +#pragma once + +module Test +{ + +// +// This object is available with the identity "__echo". +// +interface Echo +{ + void startBatch(); + void flushBatch(); + void shutdown(); +}; + +}; |