Qpid Proton C++ API  0.32.0
fwd.hpp
Go to the documentation of this file.
1 #ifndef PROTON_FWD_HPP
2 #define PROTON_FWD_HPP
3 
4 /*
5  *
6  * Licensed to the Apache Software Foundation (ASF) under one
7  * or more contributor license agreements. See the NOTICE file
8  * distributed with this work for additional information
9  * regarding copyright ownership. The ASF licenses this file
10  * to you under the Apache License, Version 2.0 (the
11  * "License"); you may not use this file except in compliance
12  * with the License. You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing,
17  * software distributed under the License is distributed on an
18  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19  * KIND, either express or implied. See the License for the
20  * specific language governing permissions and limitations
21  * under the License.
22  *
23  */
24 
27 
28 #include "./internal/config.hpp"
29 
30 namespace proton {
31 
32 class annotation_key;
33 class connection;
34 class connection_options;
35 class container;
36 class delivery;
37 class duration;
38 class error_condition;
39 class event;
40 class message;
41 class message_id;
42 class messaging_handler;
43 class listen_handler;
44 class listener;
45 class receiver;
46 class receiver_iterator;
47 class receiver_options;
48 class reconnect_options;
49 class sasl;
50 class sender;
51 class sender_iterator;
52 class sender_options;
53 class session;
54 class session_options;
55 class source_options;
56 class ssl;
57 class target_options;
58 class tracker;
59 class transport;
60 class url;
61 class void_function0;
62 class work_queue;
63 
64 namespace internal { namespace v03 { class work; } }
65 
66 #if PN_CPP_HAS_LAMBDAS && PN_CPP_HAS_VARIADIC_TEMPLATES
67 namespace internal { namespace v11 { class work; } }
68 using internal::v11::work;
69 #else
70 using internal::v03::work;
71 #endif
72 
73 namespace io {
74 
75 class connection_driver;
76 
77 }
78 
79 template <class T> class returned;
80 }
81 
82 #endif // PROTON_FWD_HPP
proton::io::connection_driver
Unsettled API - An AMQP driver for a single connection.
Definition: connection_driver.hpp:94
proton::returned
A return type for container methods.
Definition: returned.hpp:51
proton
The main Proton namespace.
Definition: annotation_key.hpp:33