summaryrefslogtreecommitdiff
path: root/python/test/Slice/structure/Test.ice
blob: e044bc7d94c4302530aaeb7d3b197c8ff0ee81cd (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

[["cpp:include:list"]]

module Test
{

sequence<int> IntSeq;
dictionary<string, string> StringDict;

struct S1
{
    string name;
}

struct S2
{
    bool bo;
    byte by;
    short sh;
    int i;
    long l;
    string str;
    IntSeq seq;
    S1 s;
}

class C
{
    string name;
}

struct S3
{
    C obj;
    StringDict sd;
    Object* prx;
}

}