Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Compiler.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Compiler.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Compiler.html Sat 
Apr 23 17:01:02 2016
@@ -284,15 +284,70 @@ memory address.</p>
 </code></pre>
 <p>Generic stringification: “ClassName@hex_mem_address”.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Make_Compiler">Make_Compiler <span 
class="comment">(abstract)</span></dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span>Compiler* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>Compiler_Make_Compiler</strong>(
+    <span class="prefix">lucy_</span>Compiler *<strong>self</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Searcher.html">Searcher</a> *<strong>searcher</strong>,
+    float <strong>boost</strong>,
+    bool <strong>subordinate</strong>
+);
+</code></pre>
+<p>Abstract factory method returning a Compiler derived from this Query.</p>
+<dl>
+<dt>searcher</dt>
+<dd><p>A Searcher.</p>
+</dd>
+<dt>boost</dt>
+<dd><p>A scoring multiplier.</p>
+</dd>
+<dt>subordinate</dt>
+<dd><p>Indicates whether the Query is a subquery (as
+opposed to a top-level query).  If false, the implementation must
+invoke <a 
href="../../Lucy/Search/Compiler.html#func_Normalize">Normalize()</a> on the 
newly minted Compiler object before returning
+it.</p>
+</dd>
+</dl>
+</dd>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>Compiler_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>Compiler_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>Compiler *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>Compiler_Get_Boost</strong>(
     <span class="prefix">lucy_</span>Compiler *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
+</dd>
+<dt id="func_Dump">Dump</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>Compiler_Dump</strong>(
+    <span class="prefix">lucy_</span>Compiler *<strong>self</strong>
+);
+</code></pre>
+</dd>
+<dt id="func_Load">Load</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>Compiler_Load</strong>(
+    <span class="prefix">lucy_</span>Compiler *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>dump</strong>
+);
+</code></pre>
 </dd>
 </dl>
 <h3>Inheritance</h3>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Hits.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Hits.html (original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Hits.html Sat Apr 23 
17:01:02 2016
@@ -119,16 +119,6 @@ produce the Hits object.  Note that this
 matches, not just the number of matches represented by the Hits
 iterator.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>Hits_Destroy</strong>(
-    <span class="prefix">lucy_</span>Hits *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 </dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::Hits is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/IndexSearcher.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/IndexSearcher.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/IndexSearcher.html 
Sat Apr 23 17:01:02 2016
@@ -135,16 +135,6 @@ modified, a new IndexSearcher must be op
 </dl>
 <h3>Methods</h3>
 <dl>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>IxSearcher_Destroy</strong>(
-    <span class="prefix">lucy_</span>IndexSearcher *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 <dt id="func_Doc_Max">Doc_Max</dt>
 <dd>
 <pre><code>int32_t
@@ -222,6 +212,62 @@ field.</p>
 <p>Accessor for the object’s <code>reader</code> member.</p>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::Searcher</h4>
+<dl>
+<dt id="func_Glean_Query">Glean_Query</dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Query.html">Query</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>IxSearcher_Glean_Query</strong>(
+    <span class="prefix">lucy_</span>IndexSearcher *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>query</strong>
+);
+</code></pre>
+<p>If the supplied object is a Query, return it; if it’s a query string,
+create a QueryParser and parse it to produce a query against all
+indexed fields.</p>
+</dd>
+<dt id="func_Hits">Hits</dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Hits.html">Hits</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>IxSearcher_Hits</strong>(
+    <span class="prefix">lucy_</span>IndexSearcher *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>query</strong>,
+    uint32_t <strong>offset</strong>,
+    uint32_t <strong>num_wanted</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/SortSpec.html">SortSpec</a> *<strong>sort_spec</strong>
+);
+</code></pre>
+<p>Return a Hits object containing the top results.</p>
+<dl>
+<dt>query</dt>
+<dd><p>Either a Query object or a query string.</p>
+</dd>
+<dt>offset</dt>
+<dd><p>The number of most-relevant hits to discard, typically
+used when “paging” through hits N at a time.  Setting
+<code>offset</code> to 20 and <code>num_wanted</code> to 10 retrieves
+hits 21-30, assuming that 30 hits can be found.</p>
+</dd>
+<dt>num_wanted</dt>
+<dd><p>The number of hits you would like to see after
+<code>offset</code> is taken into account.</p>
+</dd>
+<dt>sort_spec</dt>
+<dd><p>A <a href="../../Lucy/Search/SortSpec.html">SortSpec</a>, which will 
affect
+how results are ranked and returned.</p>
+</dd>
+</dl>
+</dd>
+<dt id="func_Get_Schema">Get_Schema</dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Plan/Schema.html">Schema</a>*
+<span class="prefix">lucy_</span><strong>IxSearcher_Get_Schema</strong>(
+    <span class="prefix">lucy_</span>IndexSearcher *<strong>self</strong>
+);
+</code></pre>
+<p>Accessor for the object’s <code>schema</code> member.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::IndexSearcher is a <a 
href="../../Lucy/Search/Searcher.html">Lucy::Search::Searcher</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/LeafQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/LeafQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/LeafQuery.html Sat 
Apr 23 17:01:02 2016
@@ -215,15 +215,27 @@ memory address.</p>
 </code></pre>
 <p>Throws an error.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>LeafQuery_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>LeafQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>LeafQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>LeafQuery_Get_Boost</strong>(
     <span class="prefix">lucy_</span>LeafQuery *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
 </dd>
 </dl>
 <h3>Inheritance</h3>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/MatchAllQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/MatchAllQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/MatchAllQuery.html 
Sat Apr 23 17:01:02 2016
@@ -172,6 +172,45 @@ it.</p>
 </dl>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>MatchAllQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>MatchAllQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>MatchAllQuery_Get_Boost</strong>(
+    <span class="prefix">lucy_</span>MatchAllQuery *<strong>self</strong>
+);
+</code></pre>
+<p>Get the Query’s boost.</p>
+</dd>
+<dt id="func_Dump">Dump</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>MatchAllQuery_Dump</strong>(
+    <span class="prefix">lucy_</span>MatchAllQuery *<strong>self</strong>
+);
+</code></pre>
+</dd>
+<dt id="func_Load">Load</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>MatchAllQuery_Load</strong>(
+    <span class="prefix">lucy_</span>MatchAllQuery *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>dump</strong>
+);
+</code></pre>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::MatchAllQuery is a <a 
href="../../Lucy/Search/Query.html">Lucy::Search::Query</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/NOTQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/NOTQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/NOTQuery.html Sat 
Apr 23 17:01:02 2016
@@ -206,6 +206,58 @@ memory address.</p>
 </dl>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::PolyQuery</h4>
+<dl>
+<dt id="func_Add_Child">Add_Child</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>NOTQuery_Add_Child</strong>(
+    <span class="prefix">lucy_</span>NOTQuery *<strong>self</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Query.html">Query</a> *<strong>query</strong>
+);
+</code></pre>
+<p>Add a child Query node.</p>
+</dd>
+<dt id="func_Dump">Dump</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>NOTQuery_Dump</strong>(
+    <span class="prefix">lucy_</span>NOTQuery *<strong>self</strong>
+);
+</code></pre>
+</dd>
+<dt id="func_Load">Load</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>NOTQuery_Load</strong>(
+    <span class="prefix">lucy_</span>NOTQuery *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>dump</strong>
+);
+</code></pre>
+</dd>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>NOTQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>NOTQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>NOTQuery_Get_Boost</strong>(
+    <span class="prefix">lucy_</span>NOTQuery *<strong>self</strong>
+);
+</code></pre>
+<p>Get the Query’s boost.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::NOTQuery is a <a 
href="../../Lucy/Search/PolyQuery.html">Lucy::Search::PolyQuery</a> is a <a 
href="../../Lucy/Search/Query.html">Lucy::Search::Query</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/NoMatchQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/NoMatchQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/NoMatchQuery.html 
Sat Apr 23 17:01:02 2016
@@ -189,6 +189,28 @@ it.</p>
 </dl>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>NoMatchQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>NoMatchQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>NoMatchQuery_Get_Boost</strong>(
+    <span class="prefix">lucy_</span>NoMatchQuery *<strong>self</strong>
+);
+</code></pre>
+<p>Get the Query’s boost.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::NoMatchQuery is a <a 
href="../../Lucy/Search/Query.html">Lucy::Search::Query</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/ORQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/ORQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/ORQuery.html Sat Apr 
23 17:01:02 2016
@@ -185,6 +185,58 @@ memory address.</p>
 </dl>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::PolyQuery</h4>
+<dl>
+<dt id="func_Add_Child">Add_Child</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>ORQuery_Add_Child</strong>(
+    <span class="prefix">lucy_</span>ORQuery *<strong>self</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Query.html">Query</a> *<strong>query</strong>
+);
+</code></pre>
+<p>Add a child Query node.</p>
+</dd>
+<dt id="func_Dump">Dump</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>ORQuery_Dump</strong>(
+    <span class="prefix">lucy_</span>ORQuery *<strong>self</strong>
+);
+</code></pre>
+</dd>
+<dt id="func_Load">Load</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>ORQuery_Load</strong>(
+    <span class="prefix">lucy_</span>ORQuery *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>dump</strong>
+);
+</code></pre>
+</dd>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>ORQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>ORQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>ORQuery_Get_Boost</strong>(
+    <span class="prefix">lucy_</span>ORQuery *<strong>self</strong>
+);
+</code></pre>
+<p>Get the Query’s boost.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::ORQuery is a <a 
href="../../Lucy/Search/PolyQuery.html">Lucy::Search::PolyQuery</a> is a <a 
href="../../Lucy/Search/Query.html">Lucy::Search::Query</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PhraseQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PhraseQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PhraseQuery.html Sat 
Apr 23 17:01:02 2016
@@ -225,15 +225,27 @@ memory address.</p>
 );
 </code></pre>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>PhraseQuery_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>PhraseQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>PhraseQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>PhraseQuery_Get_Boost</strong>(
     <span class="prefix">lucy_</span>PhraseQuery *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
 </dd>
 </dl>
 <h3>Inheritance</h3>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PolyQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PolyQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PolyQuery.html Sat 
Apr 23 17:01:02 2016
@@ -147,15 +147,53 @@ memory address.</p>
 </dd>
 </dl>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Make_Compiler">Make_Compiler <span 
class="comment">(abstract)</span></dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Compiler.html">Compiler</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>PolyQuery_Make_Compiler</strong>(
+    <span class="prefix">lucy_</span>PolyQuery *<strong>self</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Searcher.html">Searcher</a> *<strong>searcher</strong>,
+    float <strong>boost</strong>,
+    bool <strong>subordinate</strong>
+);
+</code></pre>
+<p>Abstract factory method returning a Compiler derived from this Query.</p>
+<dl>
+<dt>searcher</dt>
+<dd><p>A Searcher.</p>
+</dd>
+<dt>boost</dt>
+<dd><p>A scoring multiplier.</p>
+</dd>
+<dt>subordinate</dt>
+<dd><p>Indicates whether the Query is a subquery (as
+opposed to a top-level query).  If false, the implementation must
+invoke <a 
href="../../Lucy/Search/Compiler.html#func_Normalize">Normalize()</a> on the 
newly minted Compiler object before returning
+it.</p>
+</dd>
+</dl>
+</dd>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>PolyQuery_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>PolyQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>PolyQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>PolyQuery_Get_Boost</strong>(
     <span class="prefix">lucy_</span>PolyQuery *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
 </dd>
 </dl>
 <h3>Inheritance</h3>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PolySearcher.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PolySearcher.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/PolySearcher.html 
Sat Apr 23 17:01:02 2016
@@ -139,16 +139,6 @@ indexes on a single machine.</p>
 </dl>
 <h3>Methods</h3>
 <dl>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>PolySearcher_Destroy</strong>(
-    <span class="prefix">lucy_</span>PolySearcher *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 <dt id="func_Doc_Max">Doc_Max</dt>
 <dd>
 <pre><code>int32_t
@@ -217,6 +207,62 @@ field.</p>
 </dl>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::Searcher</h4>
+<dl>
+<dt id="func_Glean_Query">Glean_Query</dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Query.html">Query</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>PolySearcher_Glean_Query</strong>(
+    <span class="prefix">lucy_</span>PolySearcher *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>query</strong>
+);
+</code></pre>
+<p>If the supplied object is a Query, return it; if it’s a query string,
+create a QueryParser and parse it to produce a query against all
+indexed fields.</p>
+</dd>
+<dt id="func_Hits">Hits</dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Hits.html">Hits</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>PolySearcher_Hits</strong>(
+    <span class="prefix">lucy_</span>PolySearcher *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>query</strong>,
+    uint32_t <strong>offset</strong>,
+    uint32_t <strong>num_wanted</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/SortSpec.html">SortSpec</a> *<strong>sort_spec</strong>
+);
+</code></pre>
+<p>Return a Hits object containing the top results.</p>
+<dl>
+<dt>query</dt>
+<dd><p>Either a Query object or a query string.</p>
+</dd>
+<dt>offset</dt>
+<dd><p>The number of most-relevant hits to discard, typically
+used when “paging” through hits N at a time.  Setting
+<code>offset</code> to 20 and <code>num_wanted</code> to 10 retrieves
+hits 21-30, assuming that 30 hits can be found.</p>
+</dd>
+<dt>num_wanted</dt>
+<dd><p>The number of hits you would like to see after
+<code>offset</code> is taken into account.</p>
+</dd>
+<dt>sort_spec</dt>
+<dd><p>A <a href="../../Lucy/Search/SortSpec.html">SortSpec</a>, which will 
affect
+how results are ranked and returned.</p>
+</dd>
+</dl>
+</dd>
+<dt id="func_Get_Schema">Get_Schema</dt>
+<dd>
+<pre><code><span class="prefix">lucy_</span><a 
href="../../Lucy/Plan/Schema.html">Schema</a>*
+<span class="prefix">lucy_</span><strong>PolySearcher_Get_Schema</strong>(
+    <span class="prefix">lucy_</span>PolySearcher *<strong>self</strong>
+);
+</code></pre>
+<p>Accessor for the object’s <code>schema</code> member.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::PolySearcher is a <a 
href="../../Lucy/Search/Searcher.html">Lucy::Search::Searcher</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/QueryParser.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/QueryParser.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/QueryParser.html Sat 
Apr 23 17:01:02 2016
@@ -419,16 +419,6 @@ modification.</p>
 </code></pre>
 <p>Enable/disable parsing of <code>fieldname:foo</code> constructs.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>QParser_Destroy</strong>(
-    <span class="prefix">lucy_</span>QueryParser *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 </dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::QueryParser is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/RangeQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/RangeQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/RangeQuery.html Sat 
Apr 23 17:01:02 2016
@@ -221,15 +221,27 @@ it.</p>
 );
 </code></pre>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>RangeQuery_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>RangeQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>RangeQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>RangeQuery_Get_Boost</strong>(
     <span class="prefix">lucy_</span>RangeQuery *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
 </dd>
 </dl>
 <h3>Inheritance</h3>

Modified: 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/RequiredOptionalQuery.html
==============================================================================
--- 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/RequiredOptionalQuery.html
 (original)
+++ 
websites/staging/lucy/trunk/content/docs/c/Lucy/Search/RequiredOptionalQuery.html
 Sat Apr 23 17:01:02 2016
@@ -230,6 +230,58 @@ memory address.</p>
 </dl>
 </dd>
 </dl>
+<h4>Methods inherited from Lucy::Search::PolyQuery</h4>
+<dl>
+<dt id="func_Add_Child">Add_Child</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>ReqOptQuery_Add_Child</strong>(
+    <span class="prefix">lucy_</span>RequiredOptionalQuery 
*<strong>self</strong>,
+    <span class="prefix">lucy_</span><a 
href="../../Lucy/Search/Query.html">Query</a> *<strong>query</strong>
+);
+</code></pre>
+<p>Add a child Query node.</p>
+</dd>
+<dt id="func_Dump">Dump</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>ReqOptQuery_Dump</strong>(
+    <span class="prefix">lucy_</span>RequiredOptionalQuery 
*<strong>self</strong>
+);
+</code></pre>
+</dd>
+<dt id="func_Load">Load</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>ReqOptQuery_Load</strong>(
+    <span class="prefix">lucy_</span>RequiredOptionalQuery 
*<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/Obj.html">Obj</a> *<strong>dump</strong>
+);
+</code></pre>
+</dd>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>ReqOptQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>RequiredOptionalQuery 
*<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>ReqOptQuery_Get_Boost</strong>(
+    <span class="prefix">lucy_</span>RequiredOptionalQuery 
*<strong>self</strong>
+);
+</code></pre>
+<p>Get the Query’s boost.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::RequiredOptionalQuery is a <a 
href="../../Lucy/Search/PolyQuery.html">Lucy::Search::PolyQuery</a> is a <a 
href="../../Lucy/Search/Query.html">Lucy::Search::Query</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Searcher.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Searcher.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/Searcher.html Sat 
Apr 23 17:01:02 2016
@@ -118,16 +118,6 @@
 </dl>
 <h3>Methods</h3>
 <dl>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>Searcher_Destroy</strong>(
-    <span class="prefix">lucy_</span>Searcher *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 <dt id="func_Doc_Max">Doc_Max <span class="comment">(abstract)</span></dt>
 <dd>
 <pre><code>int32_t

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/SortRule.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/SortRule.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/SortRule.html Sat 
Apr 23 17:01:02 2016
@@ -167,16 +167,6 @@ parameters.</p>
 </code></pre>
 <p>Accessor for “reverse” member.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>SortRule_Destroy</strong>(
-    <span class="prefix">lucy_</span>SortRule *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 </dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::SortRule is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/SortSpec.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/SortSpec.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/SortSpec.html Sat 
Apr 23 17:01:02 2016
@@ -133,19 +133,6 @@ sort-by-doc rule as the last SortRule.</
 </dl>
 </dd>
 </dl>
-<h3>Methods</h3>
-<dl>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>SortSpec_Destroy</strong>(
-    <span class="prefix">lucy_</span>SortSpec *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
-</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Search::SortSpec is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Search/TermQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Search/TermQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Search/TermQuery.html Sat 
Apr 23 17:01:02 2016
@@ -225,15 +225,27 @@ memory address.</p>
 </dd>
 </dl>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>TermQuery_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>TermQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>TermQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>TermQuery_Get_Boost</strong>(
     <span class="prefix">lucy_</span>TermQuery *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
 </dd>
 </dl>
 <h3>Inheritance</h3>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Simple.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Simple.html (original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Simple.html Sat Apr 23 
17:01:02 2016
@@ -198,16 +198,6 @@ found.</p>
 </code></pre>
 <p>Return the next hit, or NULL when the iterator is exhausted.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>Simple_Destroy</strong>(
-    <span class="prefix">lucy_</span>Simple *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 </dl>
 <h3>Inheritance</h3>
 <p>Lucy::Simple is a <a href="../Clownfish/Obj.html">Clownfish::Obj</a>.</p>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Store/Folder.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Store/Folder.html (original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Store/Folder.html Sat Apr 
23 17:01:02 2016
@@ -101,19 +101,6 @@ a key-value pair from a hash, or somethi
 <p>The archetypal implementation of Folder,
 <a href="../../Lucy/Store/FSFolder.html">FSFolder</a>, represents a directory 
on
 the file system holding a collection of files.</p>
-<h3>Methods</h3>
-<dl>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>Folder_Destroy</strong>(
-    <span class="prefix">lucy_</span>Folder *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
-</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Store::Folder is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Store/Lock.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Store/Lock.html (original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Store/Lock.html Sat Apr 23 
17:01:02 2016
@@ -207,16 +207,6 @@ currently locked.</p>
 name matches, the host id matches, and the process id that the lock
 was created under no longer identifies an active process.</p>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>Lock_Destroy</strong>(
-    <span class="prefix">lucy_</span>Lock *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 </dl>
 <h3>Inheritance</h3>
 <p>Lucy::Store::Lock is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Store/LockErr.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Store/LockErr.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Store/LockErr.html Sat Apr 
23 17:01:02 2016
@@ -97,6 +97,38 @@
 <h3>Description</h3>
 <p>LockErr is a subclass of <a href="../../Clownfish/Err.html">Err</a> which 
indicates
 that a file locking problem occurred.</p>
+<h3>Methods</h3>
+<h4>Methods inherited from Clownfish::Err</h4>
+<dl>
+<dt id="func_To_String">To_String</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/String.html">String</a>* <span class="comment">// 
incremented</span>
+<span class="prefix">lucy_</span><strong>LockErr_To_String</strong>(
+    <span class="prefix">lucy_</span>LockErr *<strong>self</strong>
+);
+</code></pre>
+<p>Return a copy of the error message.</p>
+</dd>
+<dt id="func_Cat_Mess">Cat_Mess</dt>
+<dd>
+<pre><code>void
+<span class="prefix">lucy_</span><strong>LockErr_Cat_Mess</strong>(
+    <span class="prefix">lucy_</span>LockErr *<strong>self</strong>,
+    <span class="prefix">cfish_</span><a 
href="../../Clownfish/String.html">String</a> *<strong>mess</strong>
+);
+</code></pre>
+<p>Concatenate the supplied argument onto the error message.</p>
+</dd>
+<dt id="func_Get_Mess">Get_Mess</dt>
+<dd>
+<pre><code><span class="prefix">cfish_</span><a 
href="../../Clownfish/String.html">String</a>*
+<span class="prefix">lucy_</span><strong>LockErr_Get_Mess</strong>(
+    <span class="prefix">lucy_</span>LockErr *<strong>self</strong>
+);
+</code></pre>
+<p>Return the error message.</p>
+</dd>
+</dl>
 <h3>Inheritance</h3>
 <p>Lucy::Store::LockErr is a <a 
href="../../Clownfish/Err.html">Clownfish::Err</a> is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>
 </div>

Modified: websites/staging/lucy/trunk/content/docs/c/Lucy/Store/LockFactory.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/Lucy/Store/LockFactory.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/Lucy/Store/LockFactory.html Sat 
Apr 23 17:01:02 2016
@@ -194,16 +194,6 @@ the attempt to <a href="../../Lucy/Store
 </dd>
 </dl>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
-<dd>
-<pre><code>void
-<span class="prefix">lucy_</span><strong>LockFact_Destroy</strong>(
-    <span class="prefix">lucy_</span>LockFactory *<strong>self</strong>
-);
-</code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
-</dd>
 </dl>
 <h3>Inheritance</h3>
 <p>Lucy::Store::LockFactory is a <a 
href="../../Clownfish/Obj.html">Clownfish::Obj</a>.</p>

Modified: 
websites/staging/lucy/trunk/content/docs/c/LucyX/Search/ProximityQuery.html
==============================================================================
--- websites/staging/lucy/trunk/content/docs/c/LucyX/Search/ProximityQuery.html 
(original)
+++ websites/staging/lucy/trunk/content/docs/c/LucyX/Search/ProximityQuery.html 
Sat Apr 23 17:01:02 2016
@@ -236,15 +236,27 @@ memory address.</p>
 );
 </code></pre>
 </dd>
-<dt id="func_Destroy">Destroy</dt>
+</dl>
+<h4>Methods inherited from Lucy::Search::Query</h4>
+<dl>
+<dt id="func_Set_Boost">Set_Boost</dt>
 <dd>
 <pre><code>void
-<span class="prefix">lucy_</span><strong>ProximityQuery_Destroy</strong>(
+<span class="prefix">lucy_</span><strong>ProximityQuery_Set_Boost</strong>(
+    <span class="prefix">lucy_</span>ProximityQuery *<strong>self</strong>,
+    float <strong>boost</strong>
+);
+</code></pre>
+<p>Set the Query’s boost.</p>
+</dd>
+<dt id="func_Get_Boost">Get_Boost</dt>
+<dd>
+<pre><code>float
+<span class="prefix">lucy_</span><strong>ProximityQuery_Get_Boost</strong>(
     <span class="prefix">lucy_</span>ProximityQuery *<strong>self</strong>
 );
 </code></pre>
-<p>Generic destructor.  Frees the struct itself but not any complex
-member elements.</p>
+<p>Get the Query’s boost.</p>
 </dd>
 </dl>
 <h3>Inheritance</h3>



Reply via email to