aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/core/ivigenerator/qface imports/common.qface
blob: b9cee0c7b5bf55f2d9b0d9135d4d9b91275bf90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Common 1.0;

struct CommonStruct {
    string name
    OtherCommonStruct otherStruct
}

struct OtherCommonStruct {
    bool checked
}

enum CommonEnum {
    CommonValue1,
    CommonValue2
}

flag CommonFlag {
    FlagValue1 = 1,
    FlagValue2 = 2
}