Commit | Line | Data |
---|---|---|
890882ef PP |
1 | #ifndef BABELTRACE_COMPONENT_NOTIFICATION_PRIVATE_ITERATOR_H |
2 | #define BABELTRACE_COMPONENT_NOTIFICATION_PRIVATE_ITERATOR_H | |
3 | ||
4 | /* | |
5 | * Copyright 2017 Philippe Proulx <pproulx@efficios.com> | |
6 | * | |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * furnished to do so, subject to the following conditions: | |
14 | * | |
15 | * The above copyright notice and this permission notice shall be included in | |
16 | * all copies or substantial portions of the Software. | |
17 | * | |
18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
24 | * SOFTWARE. | |
25 | */ | |
26 | ||
27 | #ifdef __cplusplus | |
28 | extern "C" { | |
29 | #endif | |
30 | ||
31 | struct bt_connection; | |
32 | struct bt_private_port; | |
33 | struct bt_private_connection; | |
34 | struct bt_private_notification_iterator; | |
35 | ||
36 | struct bt_notification_iterator * | |
37 | bt_notification_iterator_from_private_notification_iterator( | |
38 | struct bt_private_notification_iterator *private_notification_iterator); | |
39 | ||
40 | extern struct bt_private_component * | |
41 | bt_private_notification_iterator_get_private_component( | |
42 | struct bt_private_notification_iterator *private_notification_iterator); | |
43 | ||
44 | extern enum bt_notification_iterator_status | |
45 | bt_private_notification_iterator_set_user_data( | |
46 | struct bt_private_notification_iterator *private_notification_iterator, | |
47 | void *user_data); | |
48 | ||
49 | extern void *bt_private_notification_iterator_get_user_data( | |
50 | struct bt_private_notification_iterator *private_notification_iterator); | |
51 | ||
52 | #ifdef __cplusplus | |
53 | } | |
54 | #endif | |
55 | ||
56 | #endif /* BABELTRACE_COMPONENT_NOTIFICATION_PRIVATE_ITERATOR_H */ |