http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/index.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/index.html b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/index.html deleted file mode 100755 index 9f70de9..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/index.html +++ /dev/null @@ -1,263 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> -<meta http-equiv="X-UA-Compatible" content="IE=9"/> -<meta name="generator" content="Doxygen 1.8.9.1"/> -<title>Qpid C++ Messaging API: Qpid C++ API Reference</title> -<link href="tabs.css" rel="stylesheet" type="text/css"/> -<script type="text/javascript" src="jquery.js"></script> -<script type="text/javascript" src="dynsections.js"></script> -<link href="navtree.css" rel="stylesheet" type="text/css"/> -<script type="text/javascript" src="resize.js"></script> -<script type="text/javascript" src="navtreedata.js"></script> -<script type="text/javascript" src="navtree.js"></script> -<script type="text/javascript"> - $(document).ready(initResizable); - $(window).load(resizeHeight); -</script> -<link href="search/search.css" rel="stylesheet" type="text/css"/> -<script type="text/javascript" src="search/searchdata.js"></script> -<script type="text/javascript" src="search/search.js"></script> -<script type="text/javascript"> - $(document).ready(function() { init_search(); }); -</script> -<link href="doxygen.css" rel="stylesheet" type="text/css" /> -</head> -<body> -<div id="top"><!-- do not remove this div, it is closed by doxygen! --> -<div id="titlearea"> -<table cellspacing="0" cellpadding="0"> - <tbody> - <tr style="height: 56px;"> - <td style="padding-left: 0.5em;"> - <div id="projectname">Qpid C++ Messaging API -  <span id="projectnumber">trunk</span> - </div> - </td> - <td> <div id="MSearchBox" class="MSearchBoxInactive"> - <span class="left"> - <img id="MSearchSelect" src="search/mag_sel.png" - onmouseover="return searchBox.OnSearchSelectShow()" - onmouseout="return searchBox.OnSearchSelectHide()" - alt=""/> - <input type="text" id="MSearchField" value="Search" accesskey="S" - onfocus="searchBox.OnSearchFieldFocus(true)" - onblur="searchBox.OnSearchFieldFocus(false)" - onkeyup="searchBox.OnSearchFieldChange(event)"/> - </span><span class="right"> - <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> - </span> - </div> -</td> - </tr> - </tbody> -</table> -</div> -<!-- end header part --> -<!-- Generated by Doxygen 1.8.9.1 --> -<script type="text/javascript"> -var searchBox = new SearchBox("searchBox", "search",false,'Search'); -</script> -</div><!-- top --> -<div id="side-nav" class="ui-resizable side-nav-resizable"> - <div id="nav-tree"> - <div id="nav-tree-contents"> - <div id="nav-sync" class="sync"></div> - </div> - </div> - <div id="splitbar" style="-moz-user-select:none;" - class="ui-resizable-handle"> - </div> -</div> -<script type="text/javascript"> -$(document).ready(function(){initNavTree('index.html','');}); -</script> -<div id="doc-content"> -<!-- window showing the filter options --> -<div id="MSearchSelectWindow" - onmouseover="return searchBox.OnSearchSelectShow()" - onmouseout="return searchBox.OnSearchSelectHide()" - onkeydown="return searchBox.OnSearchSelectKey(event)"> -</div> - -<!-- iframe showing the search results (closed by default) --> -<div id="MSearchResultsWindow"> -<iframe src="javascript:void(0)" frameborder="0" - name="MSearchResults" id="MSearchResults"> -</iframe> -</div> - -<div class="header"> - <div class="headertitle"> -<div class="title">Qpid C++ API Reference </div> </div> -</div><!--header--> -<div class="contents"> -<div class="textblock"><h2>Messaging Client API classes</h2> -<ul> -<li> -<p class="startli"></p> -<p><a class="el" href="group__messaging.html">Qpid C++ Client API</a></p> -<p class="endli"></p> -</li> -<li> -<p class="startli"></p> -<p><a class="el" href="group__qmfapi.html">Qpid Management Framework C++ API</a></p> -<p class="endli"></p> -</li> -</ul> -<h2>Code for common tasks</h2> -<h3>Includes and Namespaces</h3> -<pre> -#include <<a class="el" href="Connection_8h.html">qpid/messaging/Connection.h</a>> -#include <<a class="el" href="Message_8h.html">qpid/messaging/Message.h</a>> -#include <<a class="el" href="Receiver_8h.html">qpid/messaging/Receiver.h</a>> -#include <<a class="el" href="Sender_8h.html">qpid/messaging/Sender.h</a>> -#include <<a class="el" href="Session_8h.html">qpid/messaging/Session.h</a>></pre><pre>#include <iostream></pre><pre>using namespace <a class="el" href="namespaceqpid_1_1messaging.html">qpid::messaging</a>; -</pre><h3>Opening Sessions and Connections</h3> -<pre> -int main(int argc, char** argv) { - std::string broker = argc > 1 ? argv[1] : "localhost:5672"; - std::string address = argc > 2 ? argv[2] : "amq.topic"; - Connection connection(broker); - try { - connection.open(); - Session session = connection.createSession();</pre><pre> // ### Your Code Here ###</pre><pre> connection.close(); - return 0; - } catch(const std::exception& error) { - std::cerr << error.what() << std::endl; - connection.close(); - return 1; - } -} -</pre><h3>Creating and Sending a Message</h3> -<pre> -Sender sender = session.createSender(address); -sender.send(Message("Hello world!")); -</pre><h3>Setting Message Content</h3> -<pre> -Message message; -message.setContent("Hello world!");</pre><pre>// In some applications, you should also set the content type, -// which is a MIME type -message.setContentType("text/plain"); -</pre><h3>Receiving a Message</h3> -<pre> -Receiver receiver = session.createReceiver(address); -Message message = receiver.fetch(Duration::SECOND * 1); // timeout is optional -session.acknowledge(); // acknowledge message receipt -std::cout << message.getContent() << std::endl; -</pre><h3>Receiving Messages from Multiple Sources</h3> -<p>To receive messages from multiple sources, create a receiver for each source, and use session.nextReceiver().fetch() to fetch messages. session.nextReceiver() is guaranteed to return the receiver responsible for the first available message on the session.</p> -<pre> -Receiver receiver1 = session.createReceiver(address1); -Receiver receiver2 = session.createReceiver(address2);</pre><pre>Message message = session.nextReceiver().fetch(); -session.acknowledge(); // acknowledge message receipt -std::cout << message.getContent() << std::endl; -</pre><h3>Replying to a message:</h3> -<pre> -// Server creates a service queue and waits for messages -// If it gets a request, it sends a response to the reply to address</pre><pre>Receiver receiver = session.createReceiver("service_queue; {create: always}"); -Message request = receiver.fetch(); -const Address& address = request.getReplyTo(); // Get "reply-to" from request ... -if (address) { - Sender sender = session.createSender(address); // ... send response to "reply-to" - Message response("pong!"); - sender.send(response); - session.acknowledge(); -}</pre><pre>// Client creates a private response queue - the # gets converted -// to a unique string for the response queue name. Client uses the -// name of this queue as its reply-to.</pre><pre>Sender sender = session.createSender("service_queue"); -Address responseQueue("#response-queue; {create:always, delete:always}"); -Receiver receiver = session.createReceiver(responseQueue);</pre><pre>Message request; -request.setReplyTo(responseQueue); -request.setContent("ping"); -sender.send(request); -Message response = receiver.fetch(); -std::cout << request.getContent() << " -> " << response.getContent() << std::endl; -</pre><h3>Getting and Setting Standard Message Properties</h3> -<p>This shows some of the most commonly used message properties, it is not complete.</p> -<pre> -Message message("Hello world!"); -message.setContentType("text/plain"); -message.setSubject("greeting"); -message.setReplyTo("response-queue"); -message.setTtl(100); // milliseconds -message.setDurable(1);</pre><pre>std::cout << "Content: " << message.getContent() << std::endl - << "Content Type: " << message.getContentType() - << "Subject: " << message.getSubject() - << "ReplyTo: " << message.getReplyTo() - << "Time To Live (in milliseconds) " << message.getTtl() - << "Durability: " << message.getDurable(); -</pre><h3>Getting and Setting Application-Defined Message Properties</h3> -<pre> -std::string name = "weekday"; -std::string value = "Thursday"; -message.getProperties()[name] = value;</pre><pre>std:string s = message.getProperties()["weekday"]; -</pre><h3>Transparent Failover</h3> -<p>If a connection opened using the reconnect option, it will transparently reconnect if the connection is lost.</p> -<pre> -Connection connection(broker); -connection.setOption("reconnect", true); -try { - connection.open(); - .... -</pre><h3>Maps</h3> -<p>Maps provide a simple way to exchange binary data portably, across languages and platforms. Maps can contain simple types, lists, or maps.</p> -<pre> -// Sender</pre><pre>Variant::Map content; -content["id"] = 987654321; -content["name"] = "Widget"; -content["probability"] = 0.43; -Variant::List colours; -colours.push_back(Variant("red")); -colours.push_back(Variant("green")); -colours.push_back(Variant("white")); -content["colours"] = colours; -content["uuid"] = Uuid(true);</pre><pre>Message message; -encode(content, message);</pre><pre>sender.send(message); -</pre><pre> -// Receiver</pre><pre>Variant::Map content; -decode(receiver.fetch(), content); -</pre><h3>Guaranteed Delivery</h3> -<p>If a queue is durable, the queue survives a messaging broker crash, as well as any durable messages that have been placed on the queue. These messages will be delivered when the messaging broker is restarted. Delivery is not guaranteed unless both the message and the queue are durable.</p> -<pre> -Sender sender = session.createSender("durable-queue");</pre><pre>Message message("Hello world!"); -message.setDurable(1);</pre><pre>sender.send(Message("Hello world!")); -</pre><h3>Transactions</h3> -<p>Transactions cover enqueues and dequeues.</p> -<p>When sending messages, a transaction tracks enqueues without actually delivering the messages, a commit places messages on their queues, and a rollback discards the enqueues.</p> -<p>When receiving messages, a transaction tracks dequeues without actually removing acknowledged messages, a commit removes all acknowledged messages, and a rollback discards acknowledgements. A rollback does not release the message, it must be explicitly released to return it to the queue.</p> -<pre> -Connection connection(broker); -Session session = connection.createTransactionalSession(); -... -if (looksOk) - session.commit(); -else - session.rollback(); -</pre><h3>Exceptions</h3> -<p>All exceptions for the messaging API have MessagingException as their base class.</p> -<p>A common class of exception are those related to processing addresses used to create senders and/or receivers. These all have AddressError as their base class.</p> -<p>Where there is a syntax error in the address itself, a MalformedAddress will be thrown. Where the address is valid, but there is an error in interpreting (i.e. resolving) it, a ResolutionError - or a sub-class of it - will be thrown. If the address has assertions enabled for a given context and the asserted node properties are not in fact correct then AssertionFailed will be thrown. If the node is not found, NotFound will be thrown.</p> -<p>The loss of the underlying connection (e.g. the TCP connection) results in TransportFailure being thrown. If automatic reconnect is enabled, this will be caught be the library which will then try to reconnect. If reconnection - as configured by the connection options - fails, then TransportFailure will be thrown. This can occur on any call to the messaging API.</p> -<p>Sending a message may also result in an exception (e.g. TargetCapacityExceeded if a queue to which the message is delivered cannot enqueue it due to lack of capacity). For asynchronous send the exception may not be thrown on the send invocation that actually triggers it, but on a subsequent method call on the API.</p> -<p>Certain exceptions may render the session invalid; once these occur, subsequent calls on the session will throw the same class of exception. This is not an intrinsic property of the class of exception, but is a result of the current mapping of the API to the underlying AMQP 0-10 protocol. You can test whether the session is valid at any time using the hasError() and/or checkError() methods on Session.</p> -<h3>Logging</h3> -<p>The Qpidd broker and C++ clients can both use environment variables to enable logging. Use QPID_LOG_ENABLE to set the level of logging you are interested in (trace, debug, info, notice, warning, error, or critical):</p> -<pre> -export QPID_LOG_ENABLE="warning+" -</pre><p>Use QPID_LOG_OUTPUT to determine where logging output should be sent. This is either a file name or the special values stderr, stdout, or syslog:</p> -<pre> -export QPID_LOG_TO_FILE="/tmp/myclient.out" -</pre> </div></div><!-- contents --> -</div><!-- doc-content --> -<!-- start footer part --> -<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> - <ul> - <li class="footer">Generated by - <a href="http://www.doxygen.org/index.html"> - <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li> - </ul> -</div> -</body> -</html>
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.map deleted file mode 100755 index 825184a..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Address.html" title="qpid::messaging::Address" alt="" coords="5,5,179,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.md5 deleted file mode 100755 index c4f80f0..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.md5 +++ /dev/null @@ -1 +0,0 @@ -32e3165cea3073b30c679d85ba2d11c5 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.png deleted file mode 100755 index 42e3adf..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_0.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.map deleted file mode 100755 index 9c7a67a..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Duration.html" title="qpid::messaging::Duration" alt="" coords="5,5,180,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.md5 deleted file mode 100755 index 1f46874..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.md5 +++ /dev/null @@ -1 +0,0 @@ -b9efc9243fc7fdc17f6c3845641126e7 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.png deleted file mode 100755 index 93f3778..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_1.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.map deleted file mode 100755 index 79bbd83..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Message.html" title="qpid::messaging::Message" alt="" coords="5,5,184,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.md5 deleted file mode 100755 index 8fb181d..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.md5 +++ /dev/null @@ -1 +0,0 @@ -828ac5eefed45dbaa7a1710e98164569 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.png deleted file mode 100755 index 55df1b8..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_10.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.map deleted file mode 100755 index 70ba22a..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1PrivateImplRef.html" title="qpid::messaging::Private\lImplRef\< class \>" alt="" coords="5,5,172,47"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.md5 deleted file mode 100755 index 94ee410..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.md5 +++ /dev/null @@ -1 +0,0 @@ -58ec484b9abd1d8bf9b0144c3294702d \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.png deleted file mode 100755 index b602306..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_11.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.map deleted file mode 100755 index 86a3a91..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.map +++ /dev/null @@ -1,32 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node2" href="$classqpid_1_1types_1_1Exception.html" title="qpid::types::Exception" alt="" coords="132,234,284,261"/> -<area shape="rect" id="node3" href="$structqpid_1_1messaging_1_1EncodingException.html" title="qpid::messaging::Encoding\lException" alt="" coords="342,161,521,203"/> -<area shape="rect" id="node4" href="$structqpid_1_1messaging_1_1MessagingException.html" title="qpid::messaging::Messaging\lException" alt="" coords="337,227,525,268"/> -<area shape="rect" id="node31" href="$structqpid_1_1types_1_1InvalidConversion.html" title="qpid::types::InvalidConversion" alt="" coords="332,293,531,319"/> -<area shape="rect" id="node5" href="$structqpid_1_1messaging_1_1ConnectionError.html" title="qpid::messaging::Connection\lError" alt="" coords="579,71,769,112"/> -<area shape="rect" id="node8" href="$structqpid_1_1messaging_1_1InvalidOptionString.html" title="qpid::messaging::Invalid\lOptionString" alt="" coords="593,143,755,184"/> -<area shape="rect" id="node9" href="$structqpid_1_1messaging_1_1KeyError.html" title="qpid::messaging::KeyError" alt="" coords="586,209,762,235"/> -<area shape="rect" id="node10" href="$structqpid_1_1messaging_1_1LinkError.html" title="qpid::messaging::LinkError" alt="" coords="585,259,763,286"/> -<area shape="rect" id="node24" href="$structqpid_1_1messaging_1_1SessionError.html" title="qpid::messaging::Session\lError" alt="" coords="588,319,760,360"/> -<area shape="rect" id="node30" href="$structqpid_1_1messaging_1_1TransportFailure.html" title="qpid::messaging::Transport\lFailure" alt="" coords="584,384,764,425"/> -<area shape="rect" id="node6" href="$structqpid_1_1messaging_1_1AuthenticationFailure.html" title="qpid::messaging::Authentication\lFailure" alt="" coords="817,5,1025,47"/> -<area shape="rect" id="node7" href="$structqpid_1_1messaging_1_1ProtocolVersionError.html" title="qpid::messaging::Protocol\lVersionError" alt="" coords="835,71,1008,112"/> -<area shape="rect" id="node11" href="$structqpid_1_1messaging_1_1AddressError.html" title="qpid::messaging::Address\lError" alt="" coords="835,136,1008,177"/> -<area shape="rect" id="node16" href="$structqpid_1_1messaging_1_1ReceiverError.html" title="qpid::messaging::Receiver\lError" alt="" coords="833,201,1010,243"/> -<area shape="rect" id="node19" href="$structqpid_1_1messaging_1_1SenderError.html" title="qpid::messaging::SenderError" alt="" coords="824,267,1019,294"/> -<area shape="rect" id="node12" href="$structqpid_1_1messaging_1_1MalformedAddress.html" title="qpid::messaging::Malformed\lAddress" alt="" coords="1077,73,1263,115"/> -<area shape="rect" id="node13" href="$structqpid_1_1messaging_1_1ResolutionError.html" title="qpid::messaging::Resolution\lError" alt="" coords="1077,139,1263,180"/> -<area shape="rect" id="node14" href="$structqpid_1_1messaging_1_1AssertionFailed.html" title="qpid::messaging::Assertion\lFailed" alt="" coords="1332,81,1512,123"/> -<area shape="rect" id="node15" href="$structqpid_1_1messaging_1_1NotFound.html" title="qpid::messaging::NotFound" alt="" coords="1331,147,1513,174"/> -<area shape="rect" id="node17" href="$structqpid_1_1messaging_1_1FetchError.html" title="qpid::messaging::FetchError" alt="" coords="1077,207,1263,234"/> -<area shape="rect" id="node18" href="$structqpid_1_1messaging_1_1NoMessageAvailable.html" title="qpid::messaging::NoMessage\lAvailable" alt="" coords="1325,199,1519,240"/> -<area shape="rect" id="node20" href="$structqpid_1_1messaging_1_1SendError.html" title="qpid::messaging::SendError" alt="" coords="1079,301,1261,327"/> -<area shape="rect" id="node21" href="$structqpid_1_1messaging_1_1MessageRejected.html" title="qpid::messaging::Message\lRejected" alt="" coords="1333,264,1511,305"/> -<area shape="rect" id="node22" href="$structqpid_1_1messaging_1_1OutOfCapacity.html" title="qpid::messaging::OutOfCapacity" alt="" coords="1316,330,1528,357"/> -<area shape="rect" id="node23" href="$structqpid_1_1messaging_1_1TargetCapacityExceeded.html" title="qpid::messaging::TargetCapacity\lExceeded" alt="" coords="1315,381,1529,423"/> -<area shape="rect" id="node25" href="$structqpid_1_1messaging_1_1SessionClosed.html" title="qpid::messaging::Session\lClosed" alt="" coords="835,319,1007,360"/> -<area shape="rect" id="node26" href="$structqpid_1_1messaging_1_1TransactionError.html" title="qpid::messaging::Transaction\lError" alt="" coords="825,384,1018,425"/> -<area shape="rect" id="node29" href="$structqpid_1_1messaging_1_1UnauthorizedAccess.html" title="qpid::messaging::Unauthorized\lAccess" alt="" coords="820,449,1023,491"/> -<area shape="rect" id="node27" href="$structqpid_1_1messaging_1_1TransactionAborted.html" title="qpid::messaging::Transaction\lAborted" alt="" coords="1073,353,1267,395"/> -<area shape="rect" id="node28" href="$structqpid_1_1messaging_1_1TransactionUnknown.html" title="qpid::messaging::Transaction\lUnknown" alt="" coords="1073,419,1267,460"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.md5 deleted file mode 100755 index b0b5ecb..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.md5 +++ /dev/null @@ -1 +0,0 @@ -5900d6fd9511aa44cb2949a4ce0665ec \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.png deleted file mode 100755 index 6b2ad7b..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_12.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.map deleted file mode 100755 index 7eaf361..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1types_1_1Uuid.html" title="qpid::types::Uuid" alt="" coords="5,5,127,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.md5 deleted file mode 100755 index e452bf6..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.md5 +++ /dev/null @@ -1 +0,0 @@ -38aa9ae6e3f093f85f1f5eed7eb05caf \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.png deleted file mode 100755 index 93c40e5..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_13.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.map deleted file mode 100755 index 2190201..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$structqpid_1_1types_1_1Uuid_1_1Hasher.html" title="qpid::types::Uuid::\lHasher" alt="" coords="5,5,135,47"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.md5 deleted file mode 100755 index 999da70..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.md5 +++ /dev/null @@ -1 +0,0 @@ -1680c2c16f036af9bed2c7592fc94900 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.png deleted file mode 100755 index 593c269..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_14.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.map deleted file mode 100755 index 5c833f1..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1types_1_1Variant.html" title="qpid::types::Variant" alt="" coords="5,5,140,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.md5 deleted file mode 100755 index 3b45c01..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.md5 +++ /dev/null @@ -1 +0,0 @@ -e129f476a03942369a2960a6bc34a0d4 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.png deleted file mode 100755 index 4f917d1..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_15.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.map deleted file mode 100755 index 21cceb5..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1FailoverUpdates.html" title="qpid::messaging::Failover\lUpdates" alt="" coords="5,5,176,47"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.md5 deleted file mode 100755 index 928b4dd..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.md5 +++ /dev/null @@ -1 +0,0 @@ -9fb05438da724f9cb6c891de79a1d7ed \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.png deleted file mode 100755 index 27e61b7..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_2.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.map deleted file mode 100755 index dadfc6a..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.map +++ /dev/null @@ -1,4 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< ConnectionImpl \>" alt="" coords="5,5,172,47"/> -<area shape="rect" id="node2" href="$classqpid_1_1messaging_1_1Connection.html" title="qpid::messaging::Connection" alt="" coords="220,13,411,39"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.md5 deleted file mode 100755 index 9e6d1ea..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.md5 +++ /dev/null @@ -1 +0,0 @@ -1853b5b0c4bb99a1ad1b2d4bcf6ff9cd \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.png deleted file mode 100755 index 4e62561..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_3.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.map deleted file mode 100755 index 63978f4..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.map +++ /dev/null @@ -1,4 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< ReceiverImpl \>" alt="" coords="5,5,172,47"/> -<area shape="rect" id="node2" href="$classqpid_1_1messaging_1_1Receiver.html" title="qpid::messaging::Receiver" alt="" coords="220,13,397,39"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.md5 deleted file mode 100755 index f069d70..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.md5 +++ /dev/null @@ -1 +0,0 @@ -ac0762120713b9ed5c48a6df7b46941f \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.png deleted file mode 100755 index de74d67..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_4.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.map deleted file mode 100755 index 9146238..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.map +++ /dev/null @@ -1,4 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< SenderImpl \>" alt="" coords="5,5,172,47"/> -<area shape="rect" id="node2" href="$classqpid_1_1messaging_1_1Sender.html" title="qpid::messaging::Sender" alt="" coords="220,13,387,39"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.md5 deleted file mode 100755 index 666af29..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.md5 +++ /dev/null @@ -1 +0,0 @@ -b8f6659072333a07fa84b9141b402d52 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.png deleted file mode 100755 index 3c9f8bd..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_5.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.map deleted file mode 100755 index 0b52094..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.map +++ /dev/null @@ -1,4 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< SessionImpl \>" alt="" coords="5,5,172,47"/> -<area shape="rect" id="node2" href="$classqpid_1_1messaging_1_1Session.html" title="qpid::messaging::Session" alt="" coords="220,13,392,39"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.md5 deleted file mode 100755 index 5b3c10e..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.md5 +++ /dev/null @@ -1 +0,0 @@ -4401ee579a5b85ca98623b42375686d1 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.png deleted file mode 100755 index 3736ae3..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_6.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.map deleted file mode 100755 index 87ccbd5..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\< T \>" alt="" coords="5,5,204,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.md5 deleted file mode 100755 index a4710a1..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.md5 +++ /dev/null @@ -1 +0,0 @@ -a3d3ff913545fa5e3eb6525a58224a98 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.png deleted file mode 100755 index 3573a9c..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_7.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.map deleted file mode 100755 index 48d8b45..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1Logger.html" title="qpid::messaging::Logger" alt="" coords="5,5,169,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.md5 deleted file mode 100755 index f343154..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.md5 +++ /dev/null @@ -1 +0,0 @@ -934fd6aa4c2181713d1c34ccc4431d52 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.png deleted file mode 100755 index 926cd3c..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_8.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.map b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.map deleted file mode 100755 index 3524a4b..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.map +++ /dev/null @@ -1,3 +0,0 @@ -<map id="Graphical Class Hierarchy" name="Graphical Class Hierarchy"> -<area shape="rect" id="node1" href="$classqpid_1_1messaging_1_1LoggerOutput.html" title="qpid::messaging::LoggerOutput" alt="" coords="5,5,208,32"/> -</map> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.md5 b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.md5 deleted file mode 100755 index a6eb870..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.md5 +++ /dev/null @@ -1 +0,0 @@ -7f33bae6b4efef447d376a96514d7370 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.png b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.png deleted file mode 100755 index 7ca47c3..0000000 Binary files a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherit_graph_9.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/1a8679bf/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherits.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherits.html b/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherits.html deleted file mode 100755 index 2b95b99..0000000 --- a/content/releases/qpid-cpp-trunk/messaging-api/cpp/api/inherits.html +++ /dev/null @@ -1,175 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> -<meta http-equiv="X-UA-Compatible" content="IE=9"/> -<meta name="generator" content="Doxygen 1.8.9.1"/> -<title>Qpid C++ Messaging API: Class Hierarchy</title> -<link href="tabs.css" rel="stylesheet" type="text/css"/> -<script type="text/javascript" src="jquery.js"></script> -<script type="text/javascript" src="dynsections.js"></script> -<link href="navtree.css" rel="stylesheet" type="text/css"/> -<script type="text/javascript" src="resize.js"></script> -<script type="text/javascript" src="navtreedata.js"></script> -<script type="text/javascript" src="navtree.js"></script> -<script type="text/javascript"> - $(document).ready(initResizable); - $(window).load(resizeHeight); -</script> -<link href="search/search.css" rel="stylesheet" type="text/css"/> -<script type="text/javascript" src="search/searchdata.js"></script> -<script type="text/javascript" src="search/search.js"></script> -<script type="text/javascript"> - $(document).ready(function() { init_search(); }); -</script> -<link href="doxygen.css" rel="stylesheet" type="text/css" /> -</head> -<body> -<div id="top"><!-- do not remove this div, it is closed by doxygen! --> -<div id="titlearea"> -<table cellspacing="0" cellpadding="0"> - <tbody> - <tr style="height: 56px;"> - <td style="padding-left: 0.5em;"> - <div id="projectname">Qpid C++ Messaging API -  <span id="projectnumber">trunk</span> - </div> - </td> - <td> <div id="MSearchBox" class="MSearchBoxInactive"> - <span class="left"> - <img id="MSearchSelect" src="search/mag_sel.png" - onmouseover="return searchBox.OnSearchSelectShow()" - onmouseout="return searchBox.OnSearchSelectHide()" - alt=""/> - <input type="text" id="MSearchField" value="Search" accesskey="S" - onfocus="searchBox.OnSearchFieldFocus(true)" - onblur="searchBox.OnSearchFieldFocus(false)" - onkeyup="searchBox.OnSearchFieldChange(event)"/> - </span><span class="right"> - <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> - </span> - </div> -</td> - </tr> - </tbody> -</table> -</div> -<!-- end header part --> -<!-- Generated by Doxygen 1.8.9.1 --> -<script type="text/javascript"> -var searchBox = new SearchBox("searchBox", "search",false,'Search'); -</script> -</div><!-- top --> -<div id="side-nav" class="ui-resizable side-nav-resizable"> - <div id="nav-tree"> - <div id="nav-tree-contents"> - <div id="nav-sync" class="sync"></div> - </div> - </div> - <div id="splitbar" style="-moz-user-select:none;" - class="ui-resizable-handle"> - </div> -</div> -<script type="text/javascript"> -$(document).ready(function(){initNavTree('hierarchy.html','');}); -</script> -<div id="doc-content"> -<!-- window showing the filter options --> -<div id="MSearchSelectWindow" - onmouseover="return searchBox.OnSearchSelectShow()" - onmouseout="return searchBox.OnSearchSelectHide()" - onkeydown="return searchBox.OnSearchSelectKey(event)"> -</div> - -<!-- iframe showing the search results (closed by default) --> -<div id="MSearchResultsWindow"> -<iframe src="javascript:void(0)" frameborder="0" - name="MSearchResults" id="MSearchResults"> -</iframe> -</div> - -<div class="header"> - <div class="headertitle"> -<div class="title">Class Hierarchy</div> </div> -</div><!--header--> -<div class="contents"> -<div class="textblock"> -<p><a href="hierarchy.html">Go to the textual class hierarchy</a></p> -</div><table border="0" cellspacing="10" cellpadding="0"> -<tr><td><img src="inherit_graph_0.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Address"/> -<map name="qpid_1_1messaging_1_1Address" id="qpid_1_1messaging_1_1Address"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Address.html" title="qpid::messaging::Address" alt="" coords="5,5,179,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_1.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Duration"/> -<map name="qpid_1_1messaging_1_1Duration" id="qpid_1_1messaging_1_1Duration"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Duration.html" title="qpid::messaging::Duration" alt="" coords="5,5,180,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_2.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1FailoverUpdates"/> -<map name="qpid_1_1messaging_1_1FailoverUpdates" id="qpid_1_1messaging_1_1FailoverUpdates"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1FailoverUpdates.html" title="qpid::messaging::Failover\lUpdates" alt="" coords="5,5,176,47"/></map> -</td></tr> -<tr><td><img src="inherit_graph_3.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Handle_3_01ConnectionImpl_01_4"/> -<map name="qpid_1_1messaging_1_1Handle_3_01ConnectionImpl_01_4" id="qpid_1_1messaging_1_1Handle_3_01ConnectionImpl_01_4"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< ConnectionImpl \>" alt="" coords="5,5,172,47"/><area shape="rect" id="node2" href="classqpid_1_1messaging_1_1Connection.html" title="qpid::messaging::Connection" alt="" coords="220,13,411,39"/></map> -</td></tr> -<tr><td><img src="inherit_graph_4.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Handle_3_01ReceiverImpl_01_4"/> -<map name="qpid_1_1messaging_1_1Handle_3_01ReceiverImpl_01_4" id="qpid_1_1messaging_1_1Handle_3_01ReceiverImpl_01_4"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< ReceiverImpl \>" alt="" coords="5,5,172,47"/><area shape="rect" id="node2" href="classqpid_1_1messaging_1_1Receiver.html" title="qpid::messaging::Receiver" alt="" coords="220,13,397,39"/></map> -</td></tr> -<tr><td><img src="inherit_graph_5.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Handle_3_01SenderImpl_01_4"/> -<map name="qpid_1_1messaging_1_1Handle_3_01SenderImpl_01_4" id="qpid_1_1messaging_1_1Handle_3_01SenderImpl_01_4"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< SenderImpl \>" alt="" coords="5,5,172,47"/><area shape="rect" id="node2" href="classqpid_1_1messaging_1_1Sender.html" title="qpid::messaging::Sender" alt="" coords="220,13,387,39"/></map> -</td></tr> -<tr><td><img src="inherit_graph_6.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Handle_3_01SessionImpl_01_4"/> -<map name="qpid_1_1messaging_1_1Handle_3_01SessionImpl_01_4" id="qpid_1_1messaging_1_1Handle_3_01SessionImpl_01_4"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\l\< SessionImpl \>" alt="" coords="5,5,172,47"/><area shape="rect" id="node2" href="classqpid_1_1messaging_1_1Session.html" title="qpid::messaging::Session" alt="" coords="220,13,392,39"/></map> -</td></tr> -<tr><td><img src="inherit_graph_7.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Handle_3_01T_01_4"/> -<map name="qpid_1_1messaging_1_1Handle_3_01T_01_4" id="qpid_1_1messaging_1_1Handle_3_01T_01_4"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Handle.html" title="qpid::messaging::Handle\< T \>" alt="" coords="5,5,204,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_8.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Logger"/> -<map name="qpid_1_1messaging_1_1Logger" id="qpid_1_1messaging_1_1Logger"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Logger.html" title="qpid::messaging::Logger" alt="" coords="5,5,169,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_9.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1LoggerOutput"/> -<map name="qpid_1_1messaging_1_1LoggerOutput" id="qpid_1_1messaging_1_1LoggerOutput"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1LoggerOutput.html" title="qpid::messaging::LoggerOutput" alt="" coords="5,5,208,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_10.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1Message"/> -<map name="qpid_1_1messaging_1_1Message" id="qpid_1_1messaging_1_1Message"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1Message.html" title="qpid::messaging::Message" alt="" coords="5,5,184,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_11.png" border="0" alt="" usemap="#qpid_1_1messaging_1_1PrivateImplRef_3_01class_01_4"/> -<map name="qpid_1_1messaging_1_1PrivateImplRef_3_01class_01_4" id="qpid_1_1messaging_1_1PrivateImplRef_3_01class_01_4"> -<area shape="rect" id="node1" href="classqpid_1_1messaging_1_1PrivateImplRef.html" title="qpid::messaging::Private\lImplRef\< class \>" alt="" coords="5,5,172,47"/></map> -</td></tr> -<tr><td><img src="inherit_graph_12.png" border="0" alt="" usemap="#qpid_1_1types_1_1Exception"/> -<map name="qpid_1_1types_1_1Exception" id="qpid_1_1types_1_1Exception"> -<area shape="rect" id="node2" href="classqpid_1_1types_1_1Exception.html" title="qpid::types::Exception" alt="" coords="132,234,284,261"/><area shape="rect" id="node3" href="structqpid_1_1messaging_1_1EncodingException.html" title="qpid::messaging::Encoding\lException" alt="" coords="342,161,521,203"/><area shape="rect" id="node4" href="structqpid_1_1messaging_1_1MessagingException.html" title="qpid::messaging::Messaging\lException" alt="" coords="337,227,525,268"/><area shape="rect" id="node31" href="structqpid_1_1types_1_1InvalidConversion.html" title="qpid::types::InvalidConversion" alt="" coords="332,293,531,319"/><area shape="rect" id="node5" href="structqpid_1_1messaging_1_1ConnectionError.html" title="qpid::messaging::Connection\lError" alt="" coords="579,71,769,112"/><area shape="rect" id="node8" href="structqpid_1_1messaging_1_1InvalidOptionString.html" title="qpid::messaging::Invalid\lOptionString" alt="" coords="593,143,755,184"/><area shape="rect" id="node9" href="struct qpid_1_1messaging_1_1KeyError.html" title="qpid::messaging::KeyError" alt="" coords="586,209,762,235"/><area shape="rect" id="node10" href="structqpid_1_1messaging_1_1LinkError.html" title="qpid::messaging::LinkError" alt="" coords="585,259,763,286"/><area shape="rect" id="node24" href="structqpid_1_1messaging_1_1SessionError.html" title="qpid::messaging::Session\lError" alt="" coords="588,319,760,360"/><area shape="rect" id="node30" href="structqpid_1_1messaging_1_1TransportFailure.html" title="qpid::messaging::Transport\lFailure" alt="" coords="584,384,764,425"/><area shape="rect" id="node6" href="structqpid_1_1messaging_1_1AuthenticationFailure.html" title="qpid::messaging::Authentication\lFailure" alt="" coords="817,5,1025,47"/><area shape="rect" id="node7" href="structqpid_1_1messaging_1_1ProtocolVersionError.html" title="qpid::messaging::Protocol\lVersionError" alt="" coords="835,71,1008,112"/><area shape="rect" id="node11" href="structqpid_1_1messaging_1_1AddressError.html" t itle="qpid::messaging::Address\lError" alt="" coords="835,136,1008,177"/><area shape="rect" id="node16" href="structqpid_1_1messaging_1_1ReceiverError.html" title="qpid::messaging::Receiver\lError" alt="" coords="833,201,1010,243"/><area shape="rect" id="node19" href="structqpid_1_1messaging_1_1SenderError.html" title="qpid::messaging::SenderError" alt="" coords="824,267,1019,294"/><area shape="rect" id="node12" href="structqpid_1_1messaging_1_1MalformedAddress.html" title="qpid::messaging::Malformed\lAddress" alt="" coords="1077,73,1263,115"/><area shape="rect" id="node13" href="structqpid_1_1messaging_1_1ResolutionError.html" title="qpid::messaging::Resolution\lError" alt="" coords="1077,139,1263,180"/><area shape="rect" id="node14" href="structqpid_1_1messaging_1_1AssertionFailed.html" title="qpid::messaging::Assertion\lFailed" alt="" coords="1332,81,1512,123"/><area shape="rect" id="node15" href="structqpid_1_1messaging_1_1NotFound.html" title="qpid::messaging::NotFound" alt="" coords="1331,147,1513,174"/><area shape="rect" id="node17" href="structqpid_1_1messaging_1_1FetchError.html" title="qpid::messaging::FetchError" alt="" coords="1077,207,1263,234"/><area shape="rect" id="node18" href="structqpid_1_1messaging_1_1NoMessageAvailable.html" title="qpid::messaging::NoMessage\lAvailable" alt="" coords="1325,199,1519,240"/><area shape="rect" id="node20" href="structqpid_1_1messaging_1_1SendError.html" title="qpid::messaging::SendError" alt="" coords="1079,301,1261,327"/><area shape="rect" id="node21" href="structqpid_1_1messaging_1_1MessageRejected.html" title="qpid::messaging::Message\lRejected" alt="" coords="1333,264,1511,305"/><area shape="rect" id="node22" href="structqpid_1_1messaging_1_1OutOfCapacity.html" title="qpid::messaging::OutOfCapacity" alt="" coords="1316,330,1528,357"/><area shape="rect" id="node23" href="structqpid_1_1messaging_1_1TargetCapacityExceeded.html" title="qpid::messaging::TargetCapacity\lExceeded" alt="" coords="1315,381,1529,423 "/><area shape="rect" id="node25" href="structqpid_1_1messaging_1_1SessionClosed.html" title="qpid::messaging::Session\lClosed" alt="" coords="835,319,1007,360"/><area shape="rect" id="node26" href="structqpid_1_1messaging_1_1TransactionError.html" title="qpid::messaging::Transaction\lError" alt="" coords="825,384,1018,425"/><area shape="rect" id="node29" href="structqpid_1_1messaging_1_1UnauthorizedAccess.html" title="qpid::messaging::Unauthorized\lAccess" alt="" coords="820,449,1023,491"/><area shape="rect" id="node27" href="structqpid_1_1messaging_1_1TransactionAborted.html" title="qpid::messaging::Transaction\lAborted" alt="" coords="1073,353,1267,395"/><area shape="rect" id="node28" href="structqpid_1_1messaging_1_1TransactionUnknown.html" title="qpid::messaging::Transaction\lUnknown" alt="" coords="1073,419,1267,460"/></map> -</td></tr> -<tr><td><img src="inherit_graph_13.png" border="0" alt="" usemap="#qpid_1_1types_1_1Uuid"/> -<map name="qpid_1_1types_1_1Uuid" id="qpid_1_1types_1_1Uuid"> -<area shape="rect" id="node1" href="classqpid_1_1types_1_1Uuid.html" title="qpid::types::Uuid" alt="" coords="5,5,127,32"/></map> -</td></tr> -<tr><td><img src="inherit_graph_14.png" border="0" alt="" usemap="#qpid_1_1types_1_1Uuid_1_1Hasher"/> -<map name="qpid_1_1types_1_1Uuid_1_1Hasher" id="qpid_1_1types_1_1Uuid_1_1Hasher"> -<area shape="rect" id="node1" href="structqpid_1_1types_1_1Uuid_1_1Hasher.html" title="qpid::types::Uuid::\lHasher" alt="" coords="5,5,135,47"/></map> -</td></tr> -<tr><td><img src="inherit_graph_15.png" border="0" alt="" usemap="#qpid_1_1types_1_1Variant"/> -<map name="qpid_1_1types_1_1Variant" id="qpid_1_1types_1_1Variant"> -<area shape="rect" id="node1" href="classqpid_1_1types_1_1Variant.html" title="qpid::types::Variant" alt="" coords="5,5,140,32"/></map> -</td></tr> -</table> -</div><!-- contents --> -</div><!-- doc-content --> -<!-- start footer part --> -<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> - <ul> - <li class="footer">Generated by - <a href="http://www.doxygen.org/index.html"> - <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li> - </ul> -</div> -</body> -</html> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org