diff options
Diffstat (limited to 'csharp/test/IceBox/configuration/Test.ice')
-rw-r--r-- | csharp/test/IceBox/configuration/Test.ice | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/csharp/test/IceBox/configuration/Test.ice b/csharp/test/IceBox/configuration/Test.ice new file mode 100644 index 00000000000..286b4215687 --- /dev/null +++ b/csharp/test/IceBox/configuration/Test.ice @@ -0,0 +1,24 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 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 + +#include <Ice/BuiltinSequences.ice> + +module Test +{ + +interface TestIntf +{ + string getProperty(string name); + Ice::StringSeq getArgs(); + +}; + +}; |