diff options
Diffstat (limited to 'csharp/test/Ice/exceptions/ObjectFactoryI.cs')
-rw-r--r-- | csharp/test/Ice/exceptions/ObjectFactoryI.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/csharp/test/Ice/exceptions/ObjectFactoryI.cs b/csharp/test/Ice/exceptions/ObjectFactoryI.cs new file mode 100644 index 00000000000..fdada7ebf07 --- /dev/null +++ b/csharp/test/Ice/exceptions/ObjectFactoryI.cs @@ -0,0 +1,20 @@ +// ********************************************************************** +// +// 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. +// +// ********************************************************************** + +public sealed class ObjectFactoryI : Ice.ObjectFactory +{ + public Ice.Object create(string s) + { + return null; + } + + public void destroy() + { + } +} |