diff options
Diffstat (limited to 'python/test/Ice/operations/Test.ice')
-rw-r--r-- | python/test/Ice/operations/Test.ice | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/test/Ice/operations/Test.ice b/python/test/Ice/operations/Test.ice index cfafa00107b..9861a06c775 100644 --- a/python/test/Ice/operations/Test.ice +++ b/python/test/Ice/operations/Test.ice @@ -21,7 +21,7 @@ enum MyEnum enum3 }; -class MyClass; +interface MyClass; struct AnotherStruct { @@ -91,7 +91,7 @@ dictionary<string, DoubleS> StringDoubleSD; dictionary<string, StringS> StringStringSD; dictionary<MyEnum, MyEnumS> MyEnumMyEnumSD; -class MyClass +interface MyClass { void shutdown(); @@ -274,7 +274,7 @@ class MyClass1 string myClass1; // Same name as the enclosing class }; -class MyDerivedClass extends MyClass +interface MyDerivedClass extends MyClass { void opDerived(); MyClass1 opMyClass1(MyClass1 opMyClass1); |