summaryrefslogtreecommitdiff
path: root/php/test/Ice/proxy/Test.ice
blob: 4c351463e6bc4c8524f79f032ff9e4d8bd93626a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#pragma once

module Test
{

dictionary<string, string> Context;

interface MyClass
{
    void shutdown();

    Context getContext();
}

interface MyDerivedClass extends MyClass
{
    Object* echo(Object* obj);
}

}