aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangcodemodel/test/data/objc_messages_3.mm
blob: 9dc8e5b61591d7acdf7bd6566b3cb41ad5559fd2 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

@protocol Aaaa
@end

@interface Bbbb
@end

@interface PopCornTracker {
    int _quality;
    int _eatenAmount;
    int _remainedAmount;
}
- (int) eatenAmount;
- (int) spectacleQuality;
- (int) desiredAmountForDramaDose: (int)dose andPersonsCount: (int) count;
+ (id) createNewTracker;
+ (id) createOldTracker:(Bbbb<Aaaa> *) aabb;
- (id) initWithOldTracker:(Bbbb<Aaaa> *) aabb;
@end

@interface AdvancedPopCornTracker : PopCornTracker {
}

- <<<<

@end