summaryrefslogtreecommitdiff
path: root/cpp/test/IceXML/encoding/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceXML/encoding/Test.ice')
-rw-r--r--cpp/test/IceXML/encoding/Test.ice87
1 files changed, 0 insertions, 87 deletions
diff --git a/cpp/test/IceXML/encoding/Test.ice b/cpp/test/IceXML/encoding/Test.ice
deleted file mode 100644
index 309b7162153..00000000000
--- a/cpp/test/IceXML/encoding/Test.ice
+++ /dev/null
@@ -1,87 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003
-// ZeroC, Inc.
-// Billerica, MA, USA
-//
-// All Rights Reserved.
-//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
-//
-// **********************************************************************
-
-#ifndef TEST_ICE
-#define TEST_ICE
-
-module Test
-{
-
-struct Struct1
-{
- long l;
-};
-
-struct Struct2
-{
- Struct1 s1;
-};
-
-struct Struct3
-{
- long l;
- Struct2 s2;
-};
-
-struct Struct4
-{
- Struct3 s3;
- long l;
-};
-
-sequence<Struct4> Struct4Seq;
-
-dictionary<string, Struct4> StringStruct4Dict;
-
-enum Color
-{
- Red,
- Green,
- Blue
-};
-
-sequence<Color> ColorSeq;
-
-class Class1
-{
- Color c;
- string name;
-};
-
-class Class2 extends Class1
-{
- Class2 r;
-};
-
-interface Interface1
-{
- void if1();
-};
-
-class Class3 extends Class2 implements Interface1
-{
-};
-
-exception Exception1
-{
-};
-
-exception Exception2 extends Exception1
-{
- string msg;
-};
-
-};
-
-#endif