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

#pragma once

module Test
{

exception UE
{
}

interface Hello
{
    void sayHello(int delay);
    int add(int s1, int s2);
    void raiseUE()
        throws UE;
    void shutdown();
}

}