summaryrefslogtreecommitdiff
path: root/src/test/fakeLegacyService.fidl
blob: 87809e72feb70b981fe9c2d4be70522558601604 (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
// Copyright (C) 2013-2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

package fake.legacy.service

interface LegacyInterface {
    version { major 1 minor 0 }

    method TestMethod {
        in {
            Int32 input
        }
        out {
            Int32 val1
            Int32 val2
        }
    }

    method OtherTestMethod {
        out {
            String greeting
            Int32 identifier
        }
    }
    
    method finish {}
}

interface LegacyInterfaceNoObjectManager extends LegacyInterface {
	version { major 1 minor 0 }
}