Commit | Line | Data |
---|---|---|
90157d89 PP |
1 | #ifndef BABELTRACE_GRAPH_PRIVATE_CONNECTION_PRIVATE_NOTIFICATION_ITERATOR_H |
2 | #define BABELTRACE_GRAPH_PRIVATE_CONNECTION_PRIVATE_NOTIFICATION_ITERATOR_H | |
890882ef PP |
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; | |
90157d89 | 34 | struct bt_private_connection_private_notification_iterator; |
890882ef | 35 | |
25b68514 | 36 | extern struct bt_notification_iterator * |
5c563278 | 37 | bt_private_connection_notification_iterator_borrow_from_private( |
90157d89 | 38 | struct bt_private_connection_private_notification_iterator *private_notification_iterator); |
890882ef PP |
39 | |
40 | extern struct bt_private_component * | |
90157d89 PP |
41 | bt_private_connection_private_notification_iterator_get_private_component( |
42 | struct bt_private_connection_private_notification_iterator *private_notification_iterator); | |
890882ef PP |
43 | |
44 | extern enum bt_notification_iterator_status | |
90157d89 PP |
45 | bt_private_connection_private_notification_iterator_set_user_data( |
46 | struct bt_private_connection_private_notification_iterator *private_notification_iterator, | |
890882ef PP |
47 | void *user_data); |
48 | ||
90157d89 PP |
49 | extern void *bt_private_connection_private_notification_iterator_get_user_data( |
50 | struct bt_private_connection_private_notification_iterator *private_notification_iterator); | |
890882ef | 51 | |
5c563278 PP |
52 | extern struct bt_graph *bt_private_connection_private_notification_iterator_borrow_graph( |
53 | struct bt_private_connection_private_notification_iterator *private_notification_iterator); | |
54 | ||
890882ef PP |
55 | #ifdef __cplusplus |
56 | } | |
57 | #endif | |
58 | ||
90157d89 | 59 | #endif /* BABELTRACE_GRAPH_PRIVATE_CONNECTION_PRIVATE_NOTIFICATION_ITERATOR_H */ |