You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by jr...@apache.org on 2016/04/14 20:06:05 UTC

svn commit: r1739147 [21/44] - in /qpid/site: input/releases/qpid-proton-master/ input/releases/qpid-proton-master/proton/c/api/ input/releases/qpid-proton-master/proton/c/api/search/ input/releases/qpid-proton-master/proton/cpp/api/ input/releases/qpi...

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/endpoint_8hpp_source.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/endpoint_8hpp_source.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/endpoint_8hpp_source.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/endpoint_8hpp_source.html Thu Apr 14 18:05:59 2016
@@ -157,49 +157,49 @@ $(document).ready(function(){initNavTree
 <div class="line"><a name="l00075"></a><span class="lineno">   75</span>&#160;<span class="preprocessor">#endif</span></div>
 <div class="line"><a name="l00076"></a><span class="lineno">   76</span>&#160;};</div>
 <div class="line"><a name="l00077"></a><span class="lineno">   77</span>&#160;</div>
-<div class="line"><a name="l00078"></a><span class="lineno">   78</span>&#160;<span class="keyword">namespace </span>internal {</div>
-<div class="line"><a name="l00079"></a><span class="lineno">   79</span>&#160;</div>
-<div class="line"><a name="l00080"></a><span class="lineno">   80</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">class</span> T, <span class="keyword">class</span> D&gt; <span class="keyword">class </span>iter_base {</div>
-<div class="line"><a name="l00081"></a><span class="lineno">   81</span>&#160;  <span class="keyword">public</span>:</div>
-<div class="line"><a name="l00082"></a><span class="lineno">   82</span>&#160;    <span class="keyword">typedef</span> T value_type;</div>
-<div class="line"><a name="l00083"></a><span class="lineno">   83</span>&#160;</div>
-<div class="line"><a name="l00084"></a><span class="lineno">   84</span>&#160;    T operator*()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> obj_; }</div>
-<div class="line"><a name="l00085"></a><span class="lineno">   85</span>&#160;    T* operator-&gt;()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">const_cast&lt;</span>T*<span class="keyword">&gt;</span>(&amp;obj_); }</div>
-<div class="line"><a name="l00086"></a><span class="lineno">   86</span>&#160;    D operator++(<span class="keywordtype">int</span>) { D x(*<span class="keyword">this</span>); ++(*this); <span class="keywordflow">return</span> x; }</div>
-<div class="line"><a name="l00087"></a><span class="lineno">   87</span>&#160;    <span class="keywordtype">bool</span> operator==(<span class="keyword">const</span> iter_base&lt;T, D&gt;&amp; x)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> obj_ == x.obj_; }</div>
-<div class="line"><a name="l00088"></a><span class="lineno">   88</span>&#160;    <span class="keywordtype">bool</span> operator!=(<span class="keyword">const</span> iter_base&lt;T, D&gt;&amp; x)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> obj_ != x.obj_; }</div>
-<div class="line"><a name="l00089"></a><span class="lineno">   89</span>&#160;</div>
-<div class="line"><a name="l00090"></a><span class="lineno">   90</span>&#160;  <span class="keyword">protected</span>:</div>
-<div class="line"><a name="l00091"></a><span class="lineno">   91</span>&#160;    <span class="keyword">explicit</span> iter_base(T p = 0) : obj_(p) {}</div>
-<div class="line"><a name="l00092"></a><span class="lineno">   92</span>&#160;    T obj_;</div>
-<div class="line"><a name="l00093"></a><span class="lineno">   93</span>&#160;};</div>
-<div class="line"><a name="l00094"></a><span class="lineno">   94</span>&#160;</div>
-<div class="line"><a name="l00095"></a><span class="lineno">   95</span>&#160;<span class="keyword">template</span>&lt;<span class="keyword">class</span> I&gt; <span class="keyword">class </span>iter_range {</div>
-<div class="line"><a name="l00096"></a><span class="lineno">   96</span>&#160;  <span class="keyword">public</span>:</div>
-<div class="line"><a name="l00097"></a><span class="lineno">   97</span>&#160;    <span class="keyword">typedef</span> I iterator;</div>
-<div class="line"><a name="l00098"></a><span class="lineno">   98</span>&#160;</div>
-<div class="line"><a name="l00099"></a><span class="lineno">   99</span>&#160;    <span class="keyword">explicit</span> iter_range(I begin = I(), I end = I()) : begin_(begin), end_(end) {}</div>
-<div class="line"><a name="l00100"></a><span class="lineno">  100</span>&#160;    I begin()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> begin_; }</div>
-<div class="line"><a name="l00101"></a><span class="lineno">  101</span>&#160;    I end()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> end_; }</div>
-<div class="line"><a name="l00102"></a><span class="lineno">  102</span>&#160;    <span class="keywordtype">bool</span> empty()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> begin_ == end_; }</div>
-<div class="line"><a name="l00103"></a><span class="lineno">  103</span>&#160;  <span class="keyword">private</span>:</div>
-<div class="line"><a name="l00104"></a><span class="lineno">  104</span>&#160;    I begin_, end_;</div>
-<div class="line"><a name="l00105"></a><span class="lineno">  105</span>&#160;};</div>
-<div class="line"><a name="l00106"></a><span class="lineno">  106</span>&#160;</div>
-<div class="line"><a name="l00107"></a><span class="lineno">  107</span>&#160;} <span class="comment">// namespace internal</span></div>
-<div class="line"><a name="l00108"></a><span class="lineno">  108</span>&#160;} <span class="comment">// namespace proton</span></div>
-<div class="line"><a name="l00109"></a><span class="lineno">  109</span>&#160;</div>
-<div class="line"><a name="l00110"></a><span class="lineno">  110</span>&#160;<span class="preprocessor">#endif // PROTON_CPP_H</span></div>
+<div class="line"><a name="l00079"></a><span class="lineno">   79</span>&#160;<span class="keyword">namespace </span>internal {</div>
+<div class="line"><a name="l00080"></a><span class="lineno">   80</span>&#160;</div>
+<div class="line"><a name="l00081"></a><span class="lineno">   81</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">class</span> T, <span class="keyword">class</span> D&gt; <span class="keyword">class </span>iter_base {</div>
+<div class="line"><a name="l00082"></a><span class="lineno">   82</span>&#160;  <span class="keyword">public</span>:</div>
+<div class="line"><a name="l00083"></a><span class="lineno">   83</span>&#160;    <span class="keyword">typedef</span> T value_type;</div>
+<div class="line"><a name="l00084"></a><span class="lineno">   84</span>&#160;</div>
+<div class="line"><a name="l00085"></a><span class="lineno">   85</span>&#160;    T operator*()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> obj_; }</div>
+<div class="line"><a name="l00086"></a><span class="lineno">   86</span>&#160;    T* operator-&gt;()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">const_cast&lt;</span>T*<span class="keyword">&gt;</span>(&amp;obj_); }</div>
+<div class="line"><a name="l00087"></a><span class="lineno">   87</span>&#160;    D operator++(<span class="keywordtype">int</span>) { D x(*<span class="keyword">this</span>); ++(*this); <span class="keywordflow">return</span> x; }</div>
+<div class="line"><a name="l00088"></a><span class="lineno">   88</span>&#160;    <span class="keywordtype">bool</span> operator==(<span class="keyword">const</span> iter_base&lt;T, D&gt;&amp; x)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> obj_ == x.obj_; }</div>
+<div class="line"><a name="l00089"></a><span class="lineno">   89</span>&#160;    <span class="keywordtype">bool</span> operator!=(<span class="keyword">const</span> iter_base&lt;T, D&gt;&amp; x)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> obj_ != x.obj_; }</div>
+<div class="line"><a name="l00091"></a><span class="lineno">   91</span>&#160;  <span class="keyword">protected</span>:</div>
+<div class="line"><a name="l00092"></a><span class="lineno">   92</span>&#160;    <span class="keyword">explicit</span> iter_base(T p = 0) : obj_(p) {}</div>
+<div class="line"><a name="l00093"></a><span class="lineno">   93</span>&#160;    T obj_;</div>
+<div class="line"><a name="l00094"></a><span class="lineno">   94</span>&#160;};</div>
+<div class="line"><a name="l00095"></a><span class="lineno">   95</span>&#160;</div>
+<div class="line"><a name="l00096"></a><span class="lineno">   96</span>&#160;<span class="keyword">template</span>&lt;<span class="keyword">class</span> I&gt; <span class="keyword">class </span>iter_range {</div>
+<div class="line"><a name="l00097"></a><span class="lineno">   97</span>&#160;  <span class="keyword">public</span>:</div>
+<div class="line"><a name="l00098"></a><span class="lineno">   98</span>&#160;    <span class="keyword">typedef</span> I iterator;</div>
+<div class="line"><a name="l00099"></a><span class="lineno">   99</span>&#160;</div>
+<div class="line"><a name="l00100"></a><span class="lineno">  100</span>&#160;    <span class="keyword">explicit</span> iter_range(I begin = I(), I end = I()) : begin_(begin), end_(end) {}</div>
+<div class="line"><a name="l00101"></a><span class="lineno">  101</span>&#160;    I begin()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> begin_; }</div>
+<div class="line"><a name="l00102"></a><span class="lineno">  102</span>&#160;    I end()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> end_; }</div>
+<div class="line"><a name="l00103"></a><span class="lineno">  103</span>&#160;    <span class="keywordtype">bool</span> empty()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> begin_ == end_; }</div>
+<div class="line"><a name="l00104"></a><span class="lineno">  104</span>&#160;  <span class="keyword">private</span>:</div>
+<div class="line"><a name="l00105"></a><span class="lineno">  105</span>&#160;    I begin_, end_;</div>
+<div class="line"><a name="l00106"></a><span class="lineno">  106</span>&#160;};</div>
+<div class="line"><a name="l00107"></a><span class="lineno">  107</span>&#160;</div>
+<div class="line"><a name="l00108"></a><span class="lineno">  108</span>&#160;} <span class="comment">// namespace internal</span></div>
+<div class="line"><a name="l00110"></a><span class="lineno">  110</span>&#160;<span class="comment"></span></div>
+<div class="line"><a name="l00111"></a><span class="lineno">  111</span>&#160;} <span class="comment">// namespace proton</span></div>
+<div class="line"><a name="l00112"></a><span class="lineno">  112</span>&#160;</div>
+<div class="line"><a name="l00113"></a><span class="lineno">  113</span>&#160;<span class="preprocessor">#endif // PROTON_CPP_H</span></div>
 <div class="ttc" id="classproton_1_1endpoint_html_a5017b4c4cc25f9c0932455e13fb223d4"><div class="ttname"><a href="classproton_1_1endpoint.html#a5017b4c4cc25f9c0932455e13fb223d4">proton::endpoint::LOCAL_MASK</a></div><div class="ttdeci">static const state LOCAL_MASK</div><div class="ttdoc">Mask including all LOCAL_ bits (UNINIT, ACTIVE, CLOSED) </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:56</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html"><div class="ttname"><a href="classproton_1_1endpoint.html">proton::endpoint</a></div><div class="ttdoc">The base class for session, connection, and link. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:32</div></div>
-<div class="ttc" id="classproton_1_1condition_html"><div class="ttname"><a href="classproton_1_1condition.html">proton::condition</a></div><div class="ttdoc">Describes an endpoint error state. </div><div class="ttdef"><b>Definition:</b> condition.hpp:35</div></div>
+<div class="ttc" id="classproton_1_1condition_html"><div class="ttname"><a href="classproton_1_1condition.html">proton::condition</a></div><div class="ttdoc">Describes an endpoint error state. </div><div class="ttdef"><b>Definition:</b> condition.hpp:44</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_aca8e5dcefe432fcb32f48dc0433cf5ca"><div class="ttname"><a href="classproton_1_1endpoint.html#aca8e5dcefe432fcb32f48dc0433cf5ca">proton::endpoint::REMOTE_UNINIT</a></div><div class="ttdeci">static const state REMOTE_UNINIT</div><div class="ttdoc">Remote endpoint is uninitialized. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:51</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_a9660be8f45524b15c3931fb752de3b3e"><div class="ttname"><a href="classproton_1_1endpoint.html#a9660be8f45524b15c3931fb752de3b3e">proton::endpoint::state</a></div><div class="ttdeci">int state</div><div class="ttdoc">A bit mask of state bit values. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:46</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_a4f8d870a4ace6dd1be8728f0e3ccf23c"><div class="ttname"><a href="classproton_1_1endpoint.html#a4f8d870a4ace6dd1be8728f0e3ccf23c">proton::endpoint::LOCAL_CLOSED</a></div><div class="ttdeci">static const state LOCAL_CLOSED</div><div class="ttdoc">Local endpoint has been closed. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:54</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_aa1f09a6f628fac670f0f92601155e155"><div class="ttname"><a href="classproton_1_1endpoint.html#aa1f09a6f628fac670f0f92601155e155">proton::endpoint::REMOTE_ACTIVE</a></div><div class="ttdeci">static const state REMOTE_ACTIVE</div><div class="ttdoc">Remote endpoint is active. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:53</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_a37089f32d6a3324908be74116dfe6820"><div class="ttname"><a href="classproton_1_1endpoint.html#a37089f32d6a3324908be74116dfe6820">proton::endpoint::REMOTE_CLOSED</a></div><div class="ttdeci">static const state REMOTE_CLOSED</div><div class="ttdoc">Remote endpoint has been closed. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:55</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_aa9bb5c15062bee80022f56bffcf2868a"><div class="ttname"><a href="classproton_1_1endpoint.html#aa9bb5c15062bee80022f56bffcf2868a">proton::endpoint::LOCAL_ACTIVE</a></div><div class="ttdeci">static const state LOCAL_ACTIVE</div><div class="ttdoc">Local endpoint is active. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:52</div></div>
-<div class="ttc" id="namespaceproton_html"><div class="ttname"><a href="namespaceproton.html">proton</a></div><div class="ttdef"><b>Definition:</b> acceptor.hpp:31</div></div>
+<div class="ttc" id="namespaceproton_html"><div class="ttname"><a href="namespaceproton.html">proton</a></div><div class="ttdoc">The proton namespace. </div><div class="ttdef"><b>Definition:</b> acceptor.hpp:31</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_a5ee39a5f2e921db5be1c2a0e56035761"><div class="ttname"><a href="classproton_1_1endpoint.html#a5ee39a5f2e921db5be1c2a0e56035761">proton::endpoint::REMOTE_MASK</a></div><div class="ttdeci">static const state REMOTE_MASK</div><div class="ttdoc">Mask including all REMOTE_ bits (UNINIT, ACTIVE, CLOSED) </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:57</div></div>
 <div class="ttc" id="classproton_1_1endpoint_html_a84e5c2baecd6fd28505eac28ab14bacb"><div class="ttname"><a href="classproton_1_1endpoint.html#a84e5c2baecd6fd28505eac28ab14bacb">proton::endpoint::LOCAL_UNINIT</a></div><div class="ttdeci">static const state LOCAL_UNINIT</div><div class="ttdoc">Local endpoint is uninitialized. </div><div class="ttdef"><b>Definition:</b> endpoint.hpp:50</div></div>
 </div><!-- fragment --></div><!-- contents -->
@@ -207,7 +207,7 @@ $(document).ready(function(){initNavTree
 <!-- start footer part -->
 <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
   <ul>
-    <li class="navelem"><a class="el" href="dir_659b8f7bed25fad65524af70d45ab193.html">proton</a></li><li class="navelem"><b>endpoint.hpp</b></li>
+    <li class="navelem"><a class="el" href="dir_25143d27009f52d175c1d192441a738a.html">proton</a></li><li class="navelem"><b>endpoint.hpp</b></li>
     <li class="footer">Generated by
     <a href="http://www.doxygen.org/index.html">
     <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/error_8hpp_source.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/error_8hpp_source.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/error_8hpp_source.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/error_8hpp_source.html Thu Apr 14 18:05:59 2016
@@ -127,17 +127,17 @@ $(document).ready(function(){initNavTree
 <div class="line"><a name="l00032"></a><span class="lineno">   32</span>&#160;</div>
 <div class="line"><a name="l00037"></a><span class="lineno"><a class="line" href="structproton_1_1error.html">   37</a></span>&#160;<span class="keyword">struct</span></div>
 <div class="line"><a name="l00038"></a><span class="lineno">   38</span>&#160;PN_CPP_CLASS_EXTERN <a class="code" href="structproton_1_1error.html">error</a> : <span class="keyword">public</span> std::runtime_error {</div>
-<div class="line"><a name="l00039"></a><span class="lineno">   39</span>&#160;  PN_CPP_EXTERN <span class="keyword">explicit</span> <a class="code" href="structproton_1_1error.html">error</a>(<span class="keyword">const</span> std::string&amp;);</div>
+<div class="line"><a name="l00039"></a><span class="lineno">   39</span>&#160;    PN_CPP_EXTERN <span class="keyword">explicit</span> <a class="code" href="structproton_1_1error.html">error</a>(<span class="keyword">const</span> std::string&amp;); </div>
 <div class="line"><a name="l00040"></a><span class="lineno">   40</span>&#160;};</div>
 <div class="line"><a name="l00041"></a><span class="lineno">   41</span>&#160;</div>
 <div class="line"><a name="l00043"></a><span class="lineno"><a class="line" href="structproton_1_1timeout__error.html">   43</a></span>&#160;<span class="keyword">struct</span></div>
 <div class="line"><a name="l00044"></a><span class="lineno">   44</span>&#160;PN_CPP_CLASS_EXTERN <a class="code" href="structproton_1_1timeout__error.html">timeout_error</a> : <span class="keyword">public</span> <a class="code" href="structproton_1_1error.html">error</a> {</div>
-<div class="line"><a name="l00045"></a><span class="lineno">   45</span>&#160;  PN_CPP_EXTERN <span class="keyword">explicit</span> <a class="code" href="structproton_1_1timeout__error.html">timeout_error</a>(<span class="keyword">const</span> std::string&amp;);</div>
+<div class="line"><a name="l00045"></a><span class="lineno">   45</span>&#160;    PN_CPP_EXTERN <span class="keyword">explicit</span> <a class="code" href="structproton_1_1timeout__error.html">timeout_error</a>(<span class="keyword">const</span> std::string&amp;);  </div>
 <div class="line"><a name="l00046"></a><span class="lineno">   46</span>&#160;};</div>
 <div class="line"><a name="l00047"></a><span class="lineno">   47</span>&#160;</div>
 <div class="line"><a name="l00049"></a><span class="lineno"><a class="line" href="structproton_1_1conversion__error.html">   49</a></span>&#160;<span class="keyword">struct</span></div>
 <div class="line"><a name="l00050"></a><span class="lineno">   50</span>&#160;PN_CPP_CLASS_EXTERN <a class="code" href="structproton_1_1conversion__error.html">conversion_error</a> : <span class="keyword">public</span> <a class="code" href="structproton_1_1error.html">error</a> {</div>
-<div class="line"><a name="l00051"></a><span class="lineno">   51</span>&#160;  PN_CPP_EXTERN <span class="keyword">explicit</span> <a class="code" href="structproton_1_1conversion__error.html">conversion_error</a>(<span class="keyword">const</span> std::string&amp;);</div>
+<div class="line"><a name="l00051"></a><span class="lineno">   51</span>&#160;    PN_CPP_EXTERN <span class="keyword">explicit</span> <a class="code" href="structproton_1_1conversion__error.html">conversion_error</a>(<span class="keyword">const</span> std::string&amp;);  </div>
 <div class="line"><a name="l00052"></a><span class="lineno">   52</span>&#160;};</div>
 <div class="line"><a name="l00053"></a><span class="lineno">   53</span>&#160;</div>
 <div class="line"><a name="l00054"></a><span class="lineno">   54</span>&#160;}</div>
@@ -146,13 +146,13 @@ $(document).ready(function(){initNavTree
 <div class="ttc" id="structproton_1_1conversion__error_html"><div class="ttname"><a href="structproton_1_1conversion__error.html">proton::conversion_error</a></div><div class="ttdoc">Raised if there is an error converting between AMQP and C++ data. </div><div class="ttdef"><b>Definition:</b> error.hpp:49</div></div>
 <div class="ttc" id="structproton_1_1timeout__error_html"><div class="ttname"><a href="structproton_1_1timeout__error.html">proton::timeout_error</a></div><div class="ttdoc">Raised if a timeout expires. </div><div class="ttdef"><b>Definition:</b> error.hpp:43</div></div>
 <div class="ttc" id="structproton_1_1error_html"><div class="ttname"><a href="structproton_1_1error.html">proton::error</a></div><div class="ttdoc">The base proton error. </div><div class="ttdef"><b>Definition:</b> error.hpp:37</div></div>
-<div class="ttc" id="namespaceproton_html"><div class="ttname"><a href="namespaceproton.html">proton</a></div><div class="ttdef"><b>Definition:</b> acceptor.hpp:31</div></div>
+<div class="ttc" id="namespaceproton_html"><div class="ttname"><a href="namespaceproton.html">proton</a></div><div class="ttdoc">The proton namespace. </div><div class="ttdef"><b>Definition:</b> acceptor.hpp:31</div></div>
 </div><!-- fragment --></div><!-- contents -->
 </div><!-- doc-content -->
 <!-- start footer part -->
 <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
   <ul>
-    <li class="navelem"><a class="el" href="dir_659b8f7bed25fad65524af70d45ab193.html">proton</a></li><li class="navelem"><b>error.hpp</b></li>
+    <li class="navelem"><a class="el" href="dir_25143d27009f52d175c1d192441a738a.html">proton</a></li><li class="navelem"><b>error.hpp</b></li>
     <li class="footer">Generated by
     <a href="http://www.doxygen.org/index.html">
     <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/export_8hpp_source.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/export_8hpp_source.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/export_8hpp_source.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/export_8hpp_source.html Thu Apr 14 18:05:59 2016
@@ -152,7 +152,7 @@ $(document).ready(function(){initNavTree
 <!-- start footer part -->
 <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
   <ul>
-    <li class="navelem"><a class="el" href="dir_659b8f7bed25fad65524af70d45ab193.html">proton</a></li><li class="navelem"><b>export.hpp</b></li>
+    <li class="navelem"><a class="el" href="dir_25143d27009f52d175c1d192441a738a.html">proton</a></li><li class="navelem"><b>export.hpp</b></li>
     <li class="footer">Generated by
     <a href="http://www.doxygen.org/index.html">
     <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.html Thu Apr 14 18:05:59 2016
@@ -95,67 +95,63 @@ $(document).ready(function(){initNavTree
 <div class="contents">
 <div class="textblock">Here is a list of all documented files with brief descriptions:</div><div class="directory">
 <div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span>]</div><table class="directory">
-<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">&#9660;</span><span id="img_0_" class="iconfopen" onclick="toggleFolder('0_')">&#160;</span><a class="el" href="dir_93aca21f191a20b347015761f1751192.html" target="_self">docs</a></td><td class="desc"></td></tr>
-<tr id="row_0_0_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="tutorial_8hpp_source.html"><span class="icondoc"></span></a><b>tutorial.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_1_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_1_" class="arrow" onclick="toggleFolder('1_')">&#9660;</span><span id="img_1_" class="iconfopen" onclick="toggleFolder('1_')">&#160;</span><a class="el" href="dir_d28a4824dc47e487b107a5db32ef43c4.html" target="_self">examples</a></td><td class="desc"></td></tr>
-<tr id="row_1_0_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_0_" class="arrow" onclick="toggleFolder('1_0_')">&#9660;</span><span id="img_1_0_" class="iconfopen" onclick="toggleFolder('1_0_')">&#160;</span><a class="el" href="dir_8976e5d03119516083eaca3ddca61311.html" target="_self">cpp</a></td><td class="desc"></td></tr>
-<tr id="row_1_0_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><a href="README_8hpp_source.html"><span class="icondoc"></span></a><b>README.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_2_" class="arrow" onclick="toggleFolder('2_')">&#9660;</span><span id="img_2_" class="iconfopen" onclick="toggleFolder('2_')">&#160;</span><a class="el" href="dir_659b8f7bed25fad65524af70d45ab193.html" target="_self">proton</a></td><td class="desc"></td></tr>
-<tr id="row_2_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="acceptor_8hpp_source.html"><span class="icondoc"></span></a><b>acceptor.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_1_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="amqp_8hpp_source.html"><span class="icondoc"></span></a><b>amqp.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_2_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="annotation__key_8hpp_source.html"><span class="icondoc"></span></a><b>annotation_key.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_3_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="binary_8hpp_source.html"><span class="icondoc"></span></a><b>binary.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_4_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="byte__array_8hpp_source.html"><span class="icondoc"></span></a><b>byte_array.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_5_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="comparable_8hpp_source.html"><span class="icondoc"></span></a><b>comparable.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_6_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="condition_8hpp_source.html"><span class="icondoc"></span></a><b>condition.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_7_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="config_8hpp_source.html"><span class="icondoc"></span></a><b>config.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_8_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="connection_8hpp_source.html"><span class="icondoc"></span></a><b>connection.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_9_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="connection__engine_8hpp_source.html"><span class="icondoc"></span></a><b>connection_engine.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_10_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="connection__options_8hpp_source.html"><span class="icondoc"></span></a><b>connection_options.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_11_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="container_8hpp_source.html"><span class="icondoc"></span></a><b>container.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_12_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="data_8hpp_source.html"><span class="icondoc"></span></a><b>data.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_13_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="decimal_8hpp_source.html"><span class="icondoc"></span></a><b>decimal.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_14_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="decoder_8hpp_source.html"><span class="icondoc"></span></a><b>decoder.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_15_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="delivery_8hpp_source.html"><span class="icondoc"></span></a><b>delivery.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_16_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="deque_8hpp_source.html"><span class="icondoc"></span></a><b>deque.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_17_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="duration_8hpp_source.html"><span class="icondoc"></span></a><b>duration.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_18_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="encoder_8hpp_source.html"><span class="icondoc"></span></a><b>encoder.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_19_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="endpoint_8hpp_source.html"><span class="icondoc"></span></a><b>endpoint.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_20_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="error_8hpp_source.html"><span class="icondoc"></span></a><b>error.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_21_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="event_8hpp_source.html"><span class="icondoc"></span></a><b>event.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_22_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="export_8hpp_source.html"><span class="icondoc"></span></a><b>export.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_23_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="forward__list_8hpp_source.html"><span class="icondoc"></span></a><b>forward_list.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_24_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="handler_8hpp_source.html"><span class="icondoc"></span></a><b>handler.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_25_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="io_8hpp_source.html"><span class="icondoc"></span></a><b>io.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_26_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="link_8hpp_source.html"><span class="icondoc"></span></a><b>link.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_27_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="link__options_8hpp_source.html"><span class="icondoc"></span></a><b>link_options.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_28_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="list_8hpp_source.html"><span class="icondoc"></span></a><b>list.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_29_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="map_8hpp_source.html"><span class="icondoc"></span></a><b>map.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_30_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="message_8hpp_source.html"><span class="icondoc"></span></a><b>message.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_31_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="message__id_8hpp_source.html"><span class="icondoc"></span></a><b>message_id.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_32_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="object_8hpp_source.html"><span class="icondoc"></span></a><b>object.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_33_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="pn__unique__ptr_8hpp_source.html"><span class="icondoc"></span></a><b>pn_unique_ptr.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_34_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="receiver_8hpp_source.html"><span class="icondoc"></span></a><b>receiver.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_35_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="reconnect__timer_8hpp_source.html"><span class="icondoc"></span></a><b>reconnect_timer.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_36_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="sasl_8hpp_source.html"><span class="icondoc"></span></a><b>sasl.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_37_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="scalar_8hpp_source.html"><span class="icondoc"></span></a><b>scalar.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_38_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="sender_8hpp_source.html"><span class="icondoc"></span></a><b>sender.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_39_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="session_8hpp_source.html"><span class="icondoc"></span></a><b>session.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_40_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="ssl_8hpp_source.html"><span class="icondoc"></span></a><b>ssl.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_41_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="symbol_8hpp_source.html"><span class="icondoc"></span></a><b>symbol.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_42_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="task_8hpp_source.html"><span class="icondoc"></span></a><b>task.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_43_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="terminus_8hpp_source.html"><span class="icondoc"></span></a><b>terminus.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_44_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="timestamp_8hpp_source.html"><span class="icondoc"></span></a><b>timestamp.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_45_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="transport_8hpp_source.html"><span class="icondoc"></span></a><b>transport.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_46_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="type__id_8hpp_source.html"><span class="icondoc"></span></a><b>type_id.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_47_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="type__traits_8hpp_source.html"><span class="icondoc"></span></a><b>type_traits.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_48_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="types_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="types_8hpp.html" target="_self">types.hpp</a></td><td class="desc">Include the definitions of all proton types used to represent AMQP types </td></tr>
-<tr id="row_2_49_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="types__fwd_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="types__fwd_8hpp.html" target="_self">types_fwd.hpp</a></td><td class="desc">Forward declarations for all the C++ types used by proton to represent AMQP types </td></tr>
-<tr id="row_2_50_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="unordered__map_8hpp_source.html"><span class="icondoc"></span></a><b>unordered_map.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_51_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="url_8hpp_source.html"><span class="icondoc"></span></a><b>url.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_52_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="uuid_8hpp_source.html"><span class="icondoc"></span></a><b>uuid.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_53_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="value_8hpp_source.html"><span class="icondoc"></span></a><b>value.hpp</b></td><td class="desc"></td></tr>
-<tr id="row_2_54_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="vector_8hpp_source.html"><span class="icondoc"></span></a><b>vector.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">&#9660;</span><span id="img_0_" class="iconfopen" onclick="toggleFolder('0_')">&#160;</span><a class="el" href="dir_25143d27009f52d175c1d192441a738a.html" target="_self">proton</a></td><td class="desc"></td></tr>
+<tr id="row_0_0_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_0_" class="arrow" onclick="toggleFolder('0_0_')">&#9660;</span><span id="img_0_0_" class="iconfopen" onclick="toggleFolder('0_0_')">&#160;</span><a class="el" href="dir_2fd3e5516989aa9776e558b58aa1c5c4.html" target="_self">io</a></td><td class="desc"></td></tr>
+<tr id="row_0_0_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><a href="connection__engine_8hpp_source.html"><span class="icondoc"></span></a><b>connection_engine.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_0_1_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><a href="socket_8hpp_source.html"><span class="icondoc"></span></a><b>socket.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="acceptor_8hpp_source.html"><span class="icondoc"></span></a><b>acceptor.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_2_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="amqp_8hpp_source.html"><span class="icondoc"></span></a><b>amqp.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="annotation__key_8hpp_source.html"><span class="icondoc"></span></a><b>annotation_key.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_4_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="binary_8hpp_source.html"><span class="icondoc"></span></a><b>binary.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_5_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="byte__array_8hpp_source.html"><span class="icondoc"></span></a><b>byte_array.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_6_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="comparable_8hpp_source.html"><span class="icondoc"></span></a><b>comparable.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_7_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="condition_8hpp_source.html"><span class="icondoc"></span></a><b>condition.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_8_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="config_8hpp_source.html"><span class="icondoc"></span></a><b>config.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_9_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="connection_8hpp_source.html"><span class="icondoc"></span></a><b>connection.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_10_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="connection__options_8hpp_source.html"><span class="icondoc"></span></a><b>connection_options.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_11_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="container_8hpp_source.html"><span class="icondoc"></span></a><b>container.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_12_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="data_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="data_8hpp.html" target="_self">data.hpp</a></td><td class="desc"></td></tr>
+<tr id="row_0_13_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="decimal_8hpp_source.html"><span class="icondoc"></span></a><b>decimal.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_14_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="decoder_8hpp_source.html"><span class="icondoc"></span></a><b>decoder.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_15_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="delivery_8hpp_source.html"><span class="icondoc"></span></a><b>delivery.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_16_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="deque_8hpp_source.html"><span class="icondoc"></span></a><b>deque.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_17_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="duration_8hpp_source.html"><span class="icondoc"></span></a><b>duration.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_18_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="encoder_8hpp_source.html"><span class="icondoc"></span></a><b>encoder.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_19_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="endpoint_8hpp_source.html"><span class="icondoc"></span></a><b>endpoint.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_20_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="error_8hpp_source.html"><span class="icondoc"></span></a><b>error.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_21_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="export_8hpp_source.html"><span class="icondoc"></span></a><b>export.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_22_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="forward__list_8hpp_source.html"><span class="icondoc"></span></a><b>forward_list.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_23_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="handler_8hpp_source.html"><span class="icondoc"></span></a><b>handler.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_24_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="link_8hpp_source.html"><span class="icondoc"></span></a><b>link.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_25_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="link__options_8hpp_source.html"><span class="icondoc"></span></a><b>link_options.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_26_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="list_8hpp_source.html"><span class="icondoc"></span></a><b>list.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_27_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="map_8hpp_source.html"><span class="icondoc"></span></a><b>map.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_28_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="message_8hpp_source.html"><span class="icondoc"></span></a><b>message.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_29_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="message__id_8hpp_source.html"><span class="icondoc"></span></a><b>message_id.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_30_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="object_8hpp_source.html"><span class="icondoc"></span></a><b>object.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_31_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="pn__unique__ptr_8hpp_source.html"><span class="icondoc"></span></a><b>pn_unique_ptr.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_32_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="receiver_8hpp_source.html"><span class="icondoc"></span></a><b>receiver.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_33_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="reconnect__timer_8hpp_source.html"><span class="icondoc"></span></a><b>reconnect_timer.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_34_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="sasl_8hpp_source.html"><span class="icondoc"></span></a><b>sasl.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_35_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="scalar_8hpp_source.html"><span class="icondoc"></span></a><b>scalar.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_36_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="scalar__base_8hpp_source.html"><span class="icondoc"></span></a><b>scalar_base.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_37_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="sender_8hpp_source.html"><span class="icondoc"></span></a><b>sender.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_38_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="session_8hpp_source.html"><span class="icondoc"></span></a><b>session.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_39_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="ssl_8hpp_source.html"><span class="icondoc"></span></a><b>ssl.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_40_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="symbol_8hpp_source.html"><span class="icondoc"></span></a><b>symbol.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_41_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="task_8hpp_source.html"><span class="icondoc"></span></a><b>task.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_42_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="terminus_8hpp_source.html"><span class="icondoc"></span></a><b>terminus.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_43_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="timestamp_8hpp_source.html"><span class="icondoc"></span></a><b>timestamp.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_44_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="transport_8hpp_source.html"><span class="icondoc"></span></a><b>transport.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_45_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="type__id_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="type__id_8hpp.html" target="_self">type_id.hpp</a></td><td class="desc">Type-identifiers for AMQP types </td></tr>
+<tr id="row_0_46_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="type__traits_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="type__traits_8hpp.html" target="_self">type_traits.hpp</a></td><td class="desc">Internal: Type traits for mapping between AMQP and C++ types </td></tr>
+<tr id="row_0_47_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="types_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="types_8hpp.html" target="_self">types.hpp</a></td><td class="desc">Include the definitions of all proton types used to represent AMQP types </td></tr>
+<tr id="row_0_48_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="types__fwd_8hpp_source.html"><span class="icondoc"></span></a><a class="el" href="types__fwd_8hpp.html" target="_self">types_fwd.hpp</a></td><td class="desc">Forward declarations for all the C++ types used by proton to represent AMQP types </td></tr>
+<tr id="row_0_49_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="unordered__map_8hpp_source.html"><span class="icondoc"></span></a><b>unordered_map.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_50_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="url_8hpp_source.html"><span class="icondoc"></span></a><b>url.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_51_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="uuid_8hpp_source.html"><span class="icondoc"></span></a><b>uuid.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_52_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="value_8hpp_source.html"><span class="icondoc"></span></a><b>value.hpp</b></td><td class="desc"></td></tr>
+<tr id="row_0_53_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><a href="vector_8hpp_source.html"><span class="icondoc"></span></a><b>vector.hpp</b></td><td class="desc"></td></tr>
 </table>
 </div><!-- directory -->
 </div><!-- contents -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.js
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.js?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.js (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/files.js Thu Apr 14 18:05:59 2016
@@ -1,6 +1,4 @@
 var files =
 [
-    [ "docs", "dir_93aca21f191a20b347015761f1751192.html", "dir_93aca21f191a20b347015761f1751192" ],
-    [ "examples", "dir_d28a4824dc47e487b107a5db32ef43c4.html", "dir_d28a4824dc47e487b107a5db32ef43c4" ],
-    [ "proton", "dir_659b8f7bed25fad65524af70d45ab193.html", "dir_659b8f7bed25fad65524af70d45ab193" ]
+    [ "proton", "dir_25143d27009f52d175c1d192441a738a.html", "dir_25143d27009f52d175c1d192441a738a" ]
 ];
\ No newline at end of file

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/forward__list_8hpp_source.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/forward__list_8hpp_source.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/forward__list_8hpp_source.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/forward__list_8hpp_source.html Thu Apr 14 18:05:59 2016
@@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree
 <div class="line"><a name="l00029"></a><span class="lineno">   29</span>&#160;<span class="keyword">namespace </span>codec {</div>
 <div class="line"><a name="l00031"></a><span class="lineno">   31</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">class</span> T, <span class="keyword">class</span> A&gt;</div>
 <div class="line"><a name="l00032"></a><span class="lineno">   32</span>&#160;encoder&amp; operator&lt;&lt;(encoder&amp; e, const std::forward_list&lt;T, A&gt;&amp; x) {</div>
-<div class="line"><a name="l00033"></a><span class="lineno">   33</span>&#160;    <span class="keywordflow">return</span> e &lt;&lt; encoder::array(x, type_id_of&lt;T&gt;::value);</div>
+<div class="line"><a name="l00033"></a><span class="lineno">   33</span>&#160;    <span class="keywordflow">return</span> e &lt;&lt; encoder::array(x, internal::type_id_of&lt;T&gt;::value);</div>
 <div class="line"><a name="l00034"></a><span class="lineno">   34</span>&#160;}</div>
 <div class="line"><a name="l00035"></a><span class="lineno">   35</span>&#160;</div>
 <div class="line"><a name="l00037"></a><span class="lineno">   37</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">class</span> A&gt;</div>
@@ -144,13 +144,13 @@ $(document).ready(function(){initNavTree
 <div class="line"><a name="l00056"></a><span class="lineno">   56</span>&#160;}</div>
 <div class="line"><a name="l00057"></a><span class="lineno">   57</span>&#160;</div>
 <div class="line"><a name="l00058"></a><span class="lineno">   58</span>&#160;<span class="preprocessor">#endif // PROTON_FORWARD_LIST_HPP</span></div>
-<div class="ttc" id="namespaceproton_html"><div class="ttname"><a href="namespaceproton.html">proton</a></div><div class="ttdef"><b>Definition:</b> acceptor.hpp:31</div></div>
+<div class="ttc" id="namespaceproton_html"><div class="ttname"><a href="namespaceproton.html">proton</a></div><div class="ttdoc">The proton namespace. </div><div class="ttdef"><b>Definition:</b> acceptor.hpp:31</div></div>
 </div><!-- fragment --></div><!-- contents -->
 </div><!-- doc-content -->
 <!-- start footer part -->
 <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
   <ul>
-    <li class="navelem"><a class="el" href="dir_659b8f7bed25fad65524af70d45ab193.html">proton</a></li><li class="navelem"><b>forward_list.hpp</b></li>
+    <li class="navelem"><a class="el" href="dir_25143d27009f52d175c1d192441a738a.html">proton</a></li><li class="navelem"><b>forward_list.hpp</b></li>
     <li class="footer">Generated by
     <a href="http://www.doxygen.org/index.html">
     <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions.html Thu Apr 14 18:05:59 2016
@@ -94,7 +94,7 @@ $(document).ready(function(){initNavTree
 <h3><a class="anchor" id="index_a"></a>- a -</h3><ul>
 <li>accept()
 : <a class="el" href="classproton_1_1delivery.html#aadb9f3b844fb4cf98288cd3c60a3af91">delivery</a>
-, <a class="el" href="classproton_1_1io_1_1listener.html#a7b20021c0d5b97c93aec28cc646a9644">listener</a>
+, <a class="el" href="classproton_1_1io_1_1socket_1_1listener.html#a7b20021c0d5b97c93aec28cc646a9644">listener</a>
 </li>
 <li>ACCEPTED
 : <a class="el" href="classproton_1_1delivery.html#adc6e5733fc3c22f0a7b2914188c49c90a69c37229a15f9a89e188ad210f31c647">delivery</a>
@@ -102,9 +102,6 @@ $(document).ready(function(){initNavTree
 <li>address()
 : <a class="el" href="classproton_1_1terminus.html#a977efa04715923ca4fa290a6ec90c830">terminus</a>
 </li>
-<li>allow_insecure_mechs()
-: <a class="el" href="classproton_1_1sasl.html#acf87878244f30afcb1f21c349099ca9e">sasl</a>
-</li>
 <li>AMQP
 : <a class="el" href="classproton_1_1url.html#af0f2c496befc10e2fc0cf4999a733b4c">url</a>
 </li>
@@ -120,28 +117,24 @@ $(document).ready(function(){initNavTree
 <li>ANONYMOUS_PEER
 : <a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3ac0c5cd6b794574267c2ad08f485bd76d">ssl</a>
 </li>
+<li>append()
+: <a class="el" href="classproton_1_1codec_1_1data.html#a2063391a2df2e01d257a0deea850258f">data</a>
+</li>
+<li>appendn()
+: <a class="el" href="classproton_1_1codec_1_1data.html#aa93b3077282a673a1cbb7eed3b08993f">data</a>
+</li>
 <li>application_properties()
 : <a class="el" href="classproton_1_1message.html#a44ddc8be3787f1e396789dd0b1b965a9">message</a>
 </li>
-<li>as_double()
-: <a class="el" href="classproton_1_1scalar.html#a4e73e0d7340fdd4d2ed084297f293512">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a4e73e0d7340fdd4d2ed084297f293512">value</a>
-</li>
-<li>as_int()
-: <a class="el" href="classproton_1_1scalar.html#a723cf0e07741e34d77b20d5db5d34d7f">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a723cf0e07741e34d77b20d5db5d34d7f">value</a>
-</li>
-<li>as_string()
-: <a class="el" href="classproton_1_1scalar.html#a1add13e617ba6434636846c7a0156282">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a1add13e617ba6434636846c7a0156282">value</a>
-</li>
-<li>as_uint()
-: <a class="el" href="classproton_1_1scalar.html#af92a6fc8170ec402177582091e45c85b">scalar</a>
-, <a class="el" href="classproton_1_1value.html#af92a6fc8170ec402177582091e45c85b">value</a>
-</li>
 <li>AUTH
 : <a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acda8b22fbb60fcbd7a4a5e1e6ff6ee38218">sasl</a>
 </li>
+<li>auto_accept()
+: <a class="el" href="classproton_1_1link__options.html#a0aec8f881be0dd6148532f4da99c88ab">link_options</a>
+</li>
+<li>auto_settle()
+: <a class="el" href="classproton_1_1link__options.html#a38ac12bcfa8b3594ed5a3756e5773503">link_options</a>
+</li>
 </ul>
 </div><!-- contents -->
 </div><!-- doc-content -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_c.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_c.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_c.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_c.html Thu Apr 14 18:05:59 2016
@@ -92,15 +92,10 @@ $(document).ready(function(){initNavTree
 <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div>
 
 <h3><a class="anchor" id="index_c"></a>- c -</h3><ul>
-<li>can_read()
-: <a class="el" href="classproton_1_1connection__engine.html#a60d954ac4fbbeb5528462f82d8def262">connection_engine</a>
-</li>
-<li>can_write()
-: <a class="el" href="classproton_1_1connection__engine.html#a4bf8bb1392115b2a5e169b52256ddab3">connection_engine</a>
-</li>
 <li>clear()
 : <a class="el" href="classproton_1_1codec_1_1data.html#ac8bb3912a3ce86b15842e79d0b421204">data</a>
 , <a class="el" href="classproton_1_1message.html#ac8bb3912a3ce86b15842e79d0b421204">message</a>
+, <a class="el" href="classproton_1_1scalar.html#ac8bb3912a3ce86b15842e79d0b421204">scalar</a>
 , <a class="el" href="classproton_1_1value.html#ac8bb3912a3ce86b15842e79d0b421204">value</a>
 </li>
 <li>client_connection_options()
@@ -112,43 +107,54 @@ $(document).ready(function(){initNavTree
 , <a class="el" href="classproton_1_1link.html#a5ae591df94fc66ccb85cbb6565368bca">link</a>
 , <a class="el" href="classproton_1_1session.html#a5ae591df94fc66ccb85cbb6565368bca">session</a>
 </li>
-<li>closed()
-: <a class="el" href="classproton_1_1connection__engine.html#a24c88f59fb7d18a293dbc5e6cbebd744">connection_engine</a>
+<li>coerce()
+: <a class="el" href="classproton_1_1annotation__key.html#ab73c44b530463fda5e11bc403ca9edd3">annotation_key</a>
+, <a class="el" href="classproton_1_1message__id.html#a8965a5e1c4122df8aee11e971ceabd07">message_id</a>
+, <a class="el" href="classproton_1_1scalar.html#a59517f5cda18ae5c612f0c760398fe1d">scalar</a>
+, <a class="el" href="classproton_1_1value.html#a486dfed974ca6f79e75039b3eee6c44c">value</a>
 </li>
 <li>connect()
 : <a class="el" href="classproton_1_1container.html#a544f214bbb007ed7c2331cbebb60c283">container</a>
 </li>
 <li>connection()
-: <a class="el" href="classproton_1_1connection__engine.html#af13d10fc3d843719af9ff4c456330a73">connection_engine</a>
-, <a class="el" href="classproton_1_1event.html#a89bfeade377f12d843e51d16c353a556">event</a>
+: <a class="el" href="classproton_1_1delivery.html#af13d10fc3d843719af9ff4c456330a73">delivery</a>
 , <a class="el" href="classproton_1_1link.html#af13d10fc3d843719af9ff4c456330a73">link</a>
 , <a class="el" href="classproton_1_1session.html#af13d10fc3d843719af9ff4c456330a73">session</a>
 </li>
-<li>connection_engine()
-: <a class="el" href="classproton_1_1connection__engine.html#abdc83eb9896a8e81488c29c266382ce1">connection_engine</a>
-</li>
 <li>connection_options()
 : <a class="el" href="classproton_1_1acceptor.html#ab963172f8e38b29e67d2b0f2081fbd12">acceptor</a>
-, <a class="el" href="classproton_1_1connection__options.html#aa946cf564c3b226b0172b3b78f59928a">connection_options</a>
+, <a class="el" href="classproton_1_1connection__options.html#a8034b8d17ca30a4cfc3db8c6a898dc4d">connection_options</a>
 </li>
 <li>container()
 : <a class="el" href="classproton_1_1connection.html#a604ee46e04955a2323f305b4a81017a0">connection</a>
-, <a class="el" href="classproton_1_1container.html#a602b27f3fe6fd33990eb29f165a9c23a">container</a>
-, <a class="el" href="classproton_1_1event.html#a0696f6baa06a440a8c298d3d1fdde0b9">event</a>
+, <a class="el" href="classproton_1_1container.html#a02c26f6bf6a3d63784dc01e1991e67fd">container</a>
+, <a class="el" href="classproton_1_1delivery.html#a604ee46e04955a2323f305b4a81017a0">delivery</a>
+, <a class="el" href="classproton_1_1link.html#a604ee46e04955a2323f305b4a81017a0">link</a>
+, <a class="el" href="classproton_1_1session.html#a604ee46e04955a2323f305b4a81017a0">session</a>
 </li>
 <li>container_id()
 : <a class="el" href="classproton_1_1connection.html#a11010ac968cfdf09018bd47e06646c22">connection</a>
 , <a class="el" href="classproton_1_1connection__options.html#a4c6429303ccb719d9c585c88f300e007">connection_options</a>
 </li>
+<li>conversion_error()
+: <a class="el" href="structproton_1_1conversion__error.html#a34e1a24b99f9580dc7af4e9252d95ea2">conversion_error</a>
+</li>
 <li>COORDINATOR
 : <a class="el" href="classproton_1_1terminus.html#a7aead736a07eaf25623ad7bfa1f0ee2da09b3b4a722a42a5699699f98a58c4798">terminus</a>
 </li>
 <li>copy()
-: <a class="el" href="classproton_1_1uuid.html#ad358a92f27b9289e2d5f97864be8242a">uuid</a>
+: <a class="el" href="classproton_1_1codec_1_1data.html#aad84d11869f8165c7fd3db0a6546beb5">data</a>
+, <a class="el" href="classproton_1_1uuid.html#ad358a92f27b9289e2d5f97864be8242a">uuid</a>
+</li>
+<li>create()
+: <a class="el" href="classproton_1_1codec_1_1data.html#ae954badb9bd793d1616544c6dedec60c">data</a>
 </li>
 <li>credit()
 : <a class="el" href="classproton_1_1link.html#a75360c7515b9f569871c5ea953286649">link</a>
 </li>
+<li>credit_window()
+: <a class="el" href="classproton_1_1link__options.html#acbfc7fd62229aac6ef691539c1d85cff">link_options</a>
+</li>
 </ul>
 </div><!-- contents -->
 </div><!-- doc-content -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_d.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_d.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_d.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_d.html Thu Apr 14 18:05:59 2016
@@ -92,23 +92,27 @@ $(document).ready(function(){initNavTree
 <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div>
 
 <h3><a class="anchor" id="index_d"></a>- d -</h3><ul>
+<li>data()
+: <a class="el" href="classproton_1_1codec_1_1data.html#aa3f101f08b701a1320781fec0ff23417">data</a>
+</li>
 <li>decode()
-: <a class="el" href="classproton_1_1message.html#a72fbad8f3ef14c3d485f7478271f2cd4">message</a>
+: <a class="el" href="classproton_1_1codec_1_1decoder.html#a2db9ebfc344a8b1718099047639e32b2">decoder</a>
+, <a class="el" href="classproton_1_1message.html#a72fbad8f3ef14c3d485f7478271f2cd4">message</a>
+</li>
+<li>decoder()
+: <a class="el" href="classproton_1_1codec_1_1decoder.html#ac9222fed91a5066887b42f471de0be8a">decoder</a>
 </li>
 <li>default_session()
 : <a class="el" href="classproton_1_1connection.html#a0e37f5c26858e9fa4399acbbcdbb6462">connection</a>
 </li>
-<li>delivery()
-: <a class="el" href="classproton_1_1event.html#ad0ca65c8b8da50e660808a72c8e4f7e4">event</a>
-</li>
 <li>delivery_annotations()
 : <a class="el" href="classproton_1_1message.html#adb613430bba5478feb0c458d8a9e7145">message</a>
 </li>
 <li>delivery_count()
 : <a class="el" href="classproton_1_1message.html#abeb7d9304ab3f637889e8039083647fa">message</a>
 </li>
-<li>delivery_mode()
-: <a class="el" href="classproton_1_1link__options.html#a680f247788d6020dcb3c3e5f2de61399">link_options</a>
+<li>delivery_mode
+: <a class="el" href="classproton_1_1link__options.html#a57bcf61aaaaaee7fb8da6e3bb1f851f5">link_options</a>
 </li>
 <li>description()
 : <a class="el" href="classproton_1_1condition.html#a7b5000e45c1386c4e56ef650f6b0ef5b">condition</a>
@@ -118,19 +122,22 @@ $(document).ready(function(){initNavTree
 </li>
 <li>distribution_mode()
 : <a class="el" href="classproton_1_1link__options.html#aa98d0ee3d43d01bfdff4192fa16a93d0">link_options</a>
-, <a class="el" href="classproton_1_1terminus.html#ad049690d03cac384636e0c2055726089">terminus</a>
+, <a class="el" href="classproton_1_1terminus.html#aa87637eb6efc889922c056e34cb61d77">terminus</a>
 </li>
 <li>durability()
-: <a class="el" href="classproton_1_1terminus.html#ae921a2b91799100ba3ab684de5123971">terminus</a>
+: <a class="el" href="classproton_1_1terminus.html#ad8612b13b12f88216333d67a86a5d89f">terminus</a>
 </li>
 <li>durable()
-: <a class="el" href="classproton_1_1message.html#a0c7b9197c16ef184ac4c639042fe6800">message</a>
+: <a class="el" href="classproton_1_1message.html#a84f7e28685ffb38fb86e9896743600cd">message</a>
 </li>
 <li>durable_subscription()
 : <a class="el" href="classproton_1_1link__options.html#a8a9a2fe87c08f67ae00d16c04ef4e57a">link_options</a>
 </li>
+<li>duration()
+: <a class="el" href="classproton_1_1duration.html#aa4fb0163afbe72b04236e39e2b6d2dbf">duration</a>
+</li>
 <li>dynamic()
-: <a class="el" href="classproton_1_1terminus.html#ab6f99d305cf67c3a6c3d786d2b819ca8">terminus</a>
+: <a class="el" href="classproton_1_1terminus.html#a19a9a89e2e753843d320104d5f178c65">terminus</a>
 </li>
 <li>dynamic_address()
 : <a class="el" href="classproton_1_1link__options.html#a9deb2276e6cf0695b73dfc8e42e6325a">link_options</a>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_e.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_e.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_e.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_e.html Thu Apr 14 18:05:59 2016
@@ -105,8 +105,14 @@ $(document).ready(function(){initNavTree
 <li>encoder()
 : <a class="el" href="classproton_1_1codec_1_1encoder.html#af349ef49ff5e1e7d8e4c820af93c1263">encoder</a>
 </li>
-<li>expiry_policy
-: <a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1eb">terminus</a>
+<li>engine()
+: <a class="el" href="classproton_1_1io_1_1socket_1_1engine.html#a875c72b299b40111b8dff425835d32e3">engine</a>
+</li>
+<li>error()
+: <a class="el" href="structproton_1_1error.html#a78012ecea1670fd9d2a63478468d48c8">error</a>
+</li>
+<li>expiry_policy()
+: <a class="el" href="classproton_1_1terminus.html#ab066f013a385c60d1d365f871b768768">terminus</a>
 </li>
 </ul>
 </div><!-- contents -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_enum.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_enum.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_enum.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_enum.html Thu Apr 14 18:05:59 2016
@@ -102,9 +102,6 @@ $(document).ready(function(){initNavTree
 <li>expiry_policy
 : <a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1eb">terminus</a>
 </li>
-<li>io_flag
-: <a class="el" href="classproton_1_1connection__engine.html#a0cf254566748164472be93c85ad6c38e">connection_engine</a>
-</li>
 <li>lifetime_policy
 : <a class="el" href="classproton_1_1link__options.html#ad111ab21d33decca8c96f90f72cb9a82">link_options</a>
 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_f.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_f.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_f.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_f.html Thu Apr 14 18:05:59 2016
@@ -98,9 +98,6 @@ $(document).ready(function(){initNavTree
 <li>first_acquirer()
 : <a class="el" href="classproton_1_1message.html#a6d4420c66252887a803043d03d3df998">message</a>
 </li>
-<li>flow()
-: <a class="el" href="classproton_1_1receiver.html#ae1f55918650ead2aa2cbcbd86de84864">receiver</a>
-</li>
 <li>FOREVER
 : <a class="el" href="classproton_1_1duration.html#acebdd3ee364870f89665ca128e97a4d7">duration</a>
 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func.html Thu Apr 14 18:05:59 2016
@@ -94,35 +94,28 @@ $(document).ready(function(){initNavTree
 <h3><a class="anchor" id="index_a"></a>- a -</h3><ul>
 <li>accept()
 : <a class="el" href="classproton_1_1delivery.html#aadb9f3b844fb4cf98288cd3c60a3af91">delivery</a>
-, <a class="el" href="classproton_1_1io_1_1listener.html#a7b20021c0d5b97c93aec28cc646a9644">listener</a>
+, <a class="el" href="classproton_1_1io_1_1socket_1_1listener.html#a7b20021c0d5b97c93aec28cc646a9644">listener</a>
 </li>
 <li>address()
 : <a class="el" href="classproton_1_1terminus.html#a977efa04715923ca4fa290a6ec90c830">terminus</a>
 </li>
-<li>allow_insecure_mechs()
-: <a class="el" href="classproton_1_1sasl.html#acf87878244f30afcb1f21c349099ca9e">sasl</a>
-</li>
 <li>annotation_key()
 : <a class="el" href="classproton_1_1annotation__key.html#a056f77e21066cbf900772853454102a8">annotation_key</a>
 </li>
+<li>append()
+: <a class="el" href="classproton_1_1codec_1_1data.html#a2063391a2df2e01d257a0deea850258f">data</a>
+</li>
+<li>appendn()
+: <a class="el" href="classproton_1_1codec_1_1data.html#aa93b3077282a673a1cbb7eed3b08993f">data</a>
+</li>
 <li>application_properties()
 : <a class="el" href="classproton_1_1message.html#a44ddc8be3787f1e396789dd0b1b965a9">message</a>
 </li>
-<li>as_double()
-: <a class="el" href="classproton_1_1scalar.html#a4e73e0d7340fdd4d2ed084297f293512">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a4e73e0d7340fdd4d2ed084297f293512">value</a>
-</li>
-<li>as_int()
-: <a class="el" href="classproton_1_1scalar.html#a723cf0e07741e34d77b20d5db5d34d7f">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a723cf0e07741e34d77b20d5db5d34d7f">value</a>
-</li>
-<li>as_string()
-: <a class="el" href="classproton_1_1scalar.html#a1add13e617ba6434636846c7a0156282">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a1add13e617ba6434636846c7a0156282">value</a>
-</li>
-<li>as_uint()
-: <a class="el" href="classproton_1_1scalar.html#af92a6fc8170ec402177582091e45c85b">scalar</a>
-, <a class="el" href="classproton_1_1value.html#af92a6fc8170ec402177582091e45c85b">value</a>
+<li>auto_accept()
+: <a class="el" href="classproton_1_1link__options.html#a0aec8f881be0dd6148532f4da99c88ab">link_options</a>
+</li>
+<li>auto_settle()
+: <a class="el" href="classproton_1_1link__options.html#a38ac12bcfa8b3594ed5a3756e5773503">link_options</a>
 </li>
 </ul>
 </div><!-- contents -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_c.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_c.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_c.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_c.html Thu Apr 14 18:05:59 2016
@@ -92,15 +92,10 @@ $(document).ready(function(){initNavTree
 &#160;
 
 <h3><a class="anchor" id="index_c"></a>- c -</h3><ul>
-<li>can_read()
-: <a class="el" href="classproton_1_1connection__engine.html#a60d954ac4fbbeb5528462f82d8def262">connection_engine</a>
-</li>
-<li>can_write()
-: <a class="el" href="classproton_1_1connection__engine.html#a4bf8bb1392115b2a5e169b52256ddab3">connection_engine</a>
-</li>
 <li>clear()
 : <a class="el" href="classproton_1_1codec_1_1data.html#ac8bb3912a3ce86b15842e79d0b421204">data</a>
 , <a class="el" href="classproton_1_1message.html#ac8bb3912a3ce86b15842e79d0b421204">message</a>
+, <a class="el" href="classproton_1_1scalar.html#ac8bb3912a3ce86b15842e79d0b421204">scalar</a>
 , <a class="el" href="classproton_1_1value.html#ac8bb3912a3ce86b15842e79d0b421204">value</a>
 </li>
 <li>client_connection_options()
@@ -112,21 +107,20 @@ $(document).ready(function(){initNavTree
 , <a class="el" href="classproton_1_1link.html#a5ae591df94fc66ccb85cbb6565368bca">link</a>
 , <a class="el" href="classproton_1_1session.html#a5ae591df94fc66ccb85cbb6565368bca">session</a>
 </li>
-<li>closed()
-: <a class="el" href="classproton_1_1connection__engine.html#a24c88f59fb7d18a293dbc5e6cbebd744">connection_engine</a>
+<li>coerce()
+: <a class="el" href="classproton_1_1annotation__key.html#ab73c44b530463fda5e11bc403ca9edd3">annotation_key</a>
+, <a class="el" href="classproton_1_1message__id.html#a8965a5e1c4122df8aee11e971ceabd07">message_id</a>
+, <a class="el" href="classproton_1_1scalar.html#a59517f5cda18ae5c612f0c760398fe1d">scalar</a>
+, <a class="el" href="classproton_1_1value.html#a486dfed974ca6f79e75039b3eee6c44c">value</a>
 </li>
 <li>connect()
 : <a class="el" href="classproton_1_1container.html#a544f214bbb007ed7c2331cbebb60c283">container</a>
 </li>
 <li>connection()
-: <a class="el" href="classproton_1_1connection__engine.html#af13d10fc3d843719af9ff4c456330a73">connection_engine</a>
-, <a class="el" href="classproton_1_1event.html#a89bfeade377f12d843e51d16c353a556">event</a>
+: <a class="el" href="classproton_1_1delivery.html#af13d10fc3d843719af9ff4c456330a73">delivery</a>
 , <a class="el" href="classproton_1_1link.html#af13d10fc3d843719af9ff4c456330a73">link</a>
 , <a class="el" href="classproton_1_1session.html#af13d10fc3d843719af9ff4c456330a73">session</a>
 </li>
-<li>connection_engine()
-: <a class="el" href="classproton_1_1connection__engine.html#abdc83eb9896a8e81488c29c266382ce1">connection_engine</a>
-</li>
 <li>connection_options()
 : <a class="el" href="classproton_1_1acceptor.html#ab963172f8e38b29e67d2b0f2081fbd12">acceptor</a>
 , <a class="el" href="classproton_1_1connection__options.html#a8034b8d17ca30a4cfc3db8c6a898dc4d">connection_options</a>
@@ -134,18 +128,30 @@ $(document).ready(function(){initNavTree
 <li>container()
 : <a class="el" href="classproton_1_1connection.html#a604ee46e04955a2323f305b4a81017a0">connection</a>
 , <a class="el" href="classproton_1_1container.html#a602b27f3fe6fd33990eb29f165a9c23a">container</a>
-, <a class="el" href="classproton_1_1event.html#a0696f6baa06a440a8c298d3d1fdde0b9">event</a>
+, <a class="el" href="classproton_1_1delivery.html#a604ee46e04955a2323f305b4a81017a0">delivery</a>
+, <a class="el" href="classproton_1_1link.html#a604ee46e04955a2323f305b4a81017a0">link</a>
+, <a class="el" href="classproton_1_1session.html#a604ee46e04955a2323f305b4a81017a0">session</a>
 </li>
 <li>container_id()
 : <a class="el" href="classproton_1_1connection.html#a11010ac968cfdf09018bd47e06646c22">connection</a>
 , <a class="el" href="classproton_1_1connection__options.html#a4c6429303ccb719d9c585c88f300e007">connection_options</a>
 </li>
+<li>conversion_error()
+: <a class="el" href="structproton_1_1conversion__error.html#a34e1a24b99f9580dc7af4e9252d95ea2">conversion_error</a>
+</li>
 <li>copy()
-: <a class="el" href="classproton_1_1uuid.html#ad358a92f27b9289e2d5f97864be8242a">uuid</a>
+: <a class="el" href="classproton_1_1codec_1_1data.html#aad84d11869f8165c7fd3db0a6546beb5">data</a>
+, <a class="el" href="classproton_1_1uuid.html#ad358a92f27b9289e2d5f97864be8242a">uuid</a>
+</li>
+<li>create()
+: <a class="el" href="classproton_1_1codec_1_1data.html#ae954badb9bd793d1616544c6dedec60c">data</a>
 </li>
 <li>credit()
 : <a class="el" href="classproton_1_1link.html#a75360c7515b9f569871c5ea953286649">link</a>
 </li>
+<li>credit_window()
+: <a class="el" href="classproton_1_1link__options.html#acbfc7fd62229aac6ef691539c1d85cff">link_options</a>
+</li>
 </ul>
 </div><!-- contents -->
 </div><!-- doc-content -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_d.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_d.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_d.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_d.html Thu Apr 14 18:05:59 2016
@@ -92,15 +92,19 @@ $(document).ready(function(){initNavTree
 &#160;
 
 <h3><a class="anchor" id="index_d"></a>- d -</h3><ul>
+<li>data()
+: <a class="el" href="classproton_1_1codec_1_1data.html#aa3f101f08b701a1320781fec0ff23417">data</a>
+</li>
 <li>decode()
-: <a class="el" href="classproton_1_1message.html#a72fbad8f3ef14c3d485f7478271f2cd4">message</a>
+: <a class="el" href="classproton_1_1codec_1_1decoder.html#a2db9ebfc344a8b1718099047639e32b2">decoder</a>
+, <a class="el" href="classproton_1_1message.html#a72fbad8f3ef14c3d485f7478271f2cd4">message</a>
+</li>
+<li>decoder()
+: <a class="el" href="classproton_1_1codec_1_1decoder.html#ac9222fed91a5066887b42f471de0be8a">decoder</a>
 </li>
 <li>default_session()
 : <a class="el" href="classproton_1_1connection.html#a0e37f5c26858e9fa4399acbbcdbb6462">connection</a>
 </li>
-<li>delivery()
-: <a class="el" href="classproton_1_1event.html#ad0ca65c8b8da50e660808a72c8e4f7e4">event</a>
-</li>
 <li>delivery_annotations()
 : <a class="el" href="classproton_1_1message.html#adb613430bba5478feb0c458d8a9e7145">message</a>
 </li>
@@ -118,7 +122,7 @@ $(document).ready(function(){initNavTree
 </li>
 <li>distribution_mode()
 : <a class="el" href="classproton_1_1link__options.html#aa98d0ee3d43d01bfdff4192fa16a93d0">link_options</a>
-, <a class="el" href="classproton_1_1terminus.html#aa87637eb6efc889922c056e34cb61d77">terminus</a>
+, <a class="el" href="classproton_1_1terminus.html#a37e21e0d55ac6f01d394e820cd9966cd">terminus</a>
 </li>
 <li>durability()
 : <a class="el" href="classproton_1_1terminus.html#ae921a2b91799100ba3ab684de5123971">terminus</a>
@@ -129,6 +133,9 @@ $(document).ready(function(){initNavTree
 <li>durable_subscription()
 : <a class="el" href="classproton_1_1link__options.html#a8a9a2fe87c08f67ae00d16c04ef4e57a">link_options</a>
 </li>
+<li>duration()
+: <a class="el" href="classproton_1_1duration.html#aa4fb0163afbe72b04236e39e2b6d2dbf">duration</a>
+</li>
 <li>dynamic()
 : <a class="el" href="classproton_1_1terminus.html#a19a9a89e2e753843d320104d5f178c65">terminus</a>
 </li>

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_e.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_e.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_e.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_e.html Thu Apr 14 18:05:59 2016
@@ -100,13 +100,19 @@ $(document).ready(function(){initNavTree
 </li>
 <li>encode()
 : <a class="el" href="classproton_1_1codec_1_1encoder.html#a05b307b3735c19f17f1fadf74921cd8b">encoder</a>
-, <a class="el" href="classproton_1_1message.html#abd8822611da5ab8cdb109e87f74d7bdc">message</a>
+, <a class="el" href="classproton_1_1message.html#ad3a46dc2afbc10bd8686cf1f69416f3a">message</a>
 </li>
 <li>encoder()
-: <a class="el" href="classproton_1_1codec_1_1encoder.html#af349ef49ff5e1e7d8e4c820af93c1263">encoder</a>
+: <a class="el" href="classproton_1_1codec_1_1encoder.html#a3c0a094e7f852de0a4197c0fdab85004">encoder</a>
+</li>
+<li>engine()
+: <a class="el" href="classproton_1_1io_1_1socket_1_1engine.html#a875c72b299b40111b8dff425835d32e3">engine</a>
+</li>
+<li>error()
+: <a class="el" href="structproton_1_1error.html#a78012ecea1670fd9d2a63478468d48c8">error</a>
 </li>
 <li>expiry_policy()
-: <a class="el" href="classproton_1_1terminus.html#ab066f013a385c60d1d365f871b768768">terminus</a>
+: <a class="el" href="classproton_1_1terminus.html#a35bc709f9c21b76b2bdb1a22127ae790">terminus</a>
 </li>
 </ul>
 </div><!-- contents -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_f.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_f.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_f.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_f.html Thu Apr 14 18:05:59 2016
@@ -96,10 +96,7 @@ $(document).ready(function(){initNavTree
 : <a class="el" href="classproton_1_1terminus.html#ab3d568477cd77121cfcaf172d317c68b">terminus</a>
 </li>
 <li>first_acquirer()
-: <a class="el" href="classproton_1_1message.html#a6d4420c66252887a803043d03d3df998">message</a>
-</li>
-<li>flow()
-: <a class="el" href="classproton_1_1receiver.html#ae1f55918650ead2aa2cbcbd86de84864">receiver</a>
+: <a class="el" href="classproton_1_1message.html#a122b054276ca071bb4c95bb11916263e">message</a>
 </li>
 </ul>
 </div><!-- contents -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_g.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_g.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_g.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_g.html Thu Apr 14 18:05:59 2016
@@ -93,13 +93,13 @@ $(document).ready(function(){initNavTree
 
 <h3><a class="anchor" id="index_g"></a>- g -</h3><ul>
 <li>get()
-: <a class="el" href="classproton_1_1annotation__key.html#a1541aac2858109c409fcf5eb4ba7799e">annotation_key</a>
-, <a class="el" href="classproton_1_1message__id.html#a1541aac2858109c409fcf5eb4ba7799e">message_id</a>
-, <a class="el" href="classproton_1_1scalar.html#a1541aac2858109c409fcf5eb4ba7799e">scalar</a>
-, <a class="el" href="classproton_1_1value.html#a1541aac2858109c409fcf5eb4ba7799e">value</a>
+: <a class="el" href="classproton_1_1annotation__key.html#ace2642bea7a7ab2d830f42390eb4a604">annotation_key</a>
+, <a class="el" href="classproton_1_1message__id.html#a9df1e3d65a418435d46c08f9cb2948de">message_id</a>
+, <a class="el" href="classproton_1_1scalar.html#a61968283b9e1fc067dcad67e9fe58f6a">scalar</a>
+, <a class="el" href="classproton_1_1value.html#a2dd4c0151b171f03f2c36d907832522b">value</a>
 </li>
 <li>group_sequence()
-: <a class="el" href="classproton_1_1message.html#ac8a6eb278511ca171bdc324f341b7d3f">message</a>
+: <a class="el" href="classproton_1_1message.html#a2c47345d04743821765ec83e13396f29">message</a>
 </li>
 </ul>
 </div><!-- contents -->

Modified: qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_l.html
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_l.html?rev=1739147&r1=1739146&r2=1739147&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_l.html (original)
+++ qpid/site/input/releases/qpid-proton-master/proton/cpp/api/functions_func_l.html Thu Apr 14 18:05:59 2016
@@ -97,7 +97,6 @@ $(document).ready(function(){initNavTree
 </li>
 <li>link()
 : <a class="el" href="classproton_1_1delivery.html#aca9726355bb7d42b75d374b5cc459040">delivery</a>
-, <a class="el" href="classproton_1_1event.html#a2ce4835ffc5538deb4004da365e8be57">event</a>
 </li>
 <li>link_options()
 : <a class="el" href="classproton_1_1container.html#abe6a163dd9a95e0ef869c8d3bd265b1d">container</a>
@@ -111,7 +110,7 @@ $(document).ready(function(){initNavTree
 : <a class="el" href="classproton_1_1container.html#ab5a976cc459568f13da407a038591ca2">container</a>
 </li>
 <li>listener()
-: <a class="el" href="classproton_1_1io_1_1listener.html#ac7d29e395fadfacad9f98bf70e5608fe">listener</a>
+: <a class="el" href="classproton_1_1io_1_1socket_1_1listener.html#ac7d29e395fadfacad9f98bf70e5608fe">listener</a>
 </li>
 <li>local_address()
 : <a class="el" href="classproton_1_1link__options.html#a532e4ce92da37e5785001b470a99776b">link_options</a>




---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org