Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67243 - sandbox/configurator/libs/configurator/doc/reference
From: for.dshevchenko_at_[hidden]
Date: 2010-12-15 13:48:07


Author: dshevchenko
Date: 2010-12-15 13:48:05 EST (Wed, 15 Dec 2010)
New Revision: 67243
URL: http://svn.boost.org/trac/boost/changeset/67243

Log:
Doc improving

Added:
   sandbox/configurator/libs/configurator/doc/reference/boost_configurator_option.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_add.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_configurator.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_get_value_of.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_load.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_reload.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_settings_send_warnings_to.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_case_sensitivity_for_names.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_close_section_edging.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_name_value_separator.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_one_line_comment_sign.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_open_section_edging.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/option_allow_multi_values.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/option_check_semantic.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/option_set_default_value.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/option_set_location.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/option_set_necessity.html (contents, props changed)
   sandbox/configurator/libs/configurator/doc/reference/single_configurator_inst.html (contents, props changed)

Added: sandbox/configurator/libs/configurator/doc/reference/boost_configurator_option.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_add.html
==============================================================================
--- (empty file)
+++ sandbox/configurator/libs/configurator/doc/reference/configurator_add.html 2010-12-15 13:48:05 EST (Wed, 15 Dec 2010)
@@ -0,0 +1,84 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+
+<html>
+ <head>
+ <meta http-equiv="Content-Language" content="en-us">
+ <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <link rel="stylesheet" type="text/css" href="../own.css">
+ <title>Boost.Configurator</title>
+ </head>
+
+ <body>
+ <table cellpadding="2" width="100%">
+ <tr>
+ <td valign="top"><a href="http://www.boost.org">
+ <img style="border: 0pt none;" alt="Boost C++ Libraries" width="277" height="86" src="../boost.png"></a></td>
+ <td align="center">Home</td>
+ <td align="center">Libraries</td>
+ <td align="center">People</td>
+ <td align="center">FAQ</td>
+ </tr>
+ </table>
+
+ <hr/>
+
+ <div class="navigation">
+Prev&nbsp;Up&nbsp;Home&nbsp;Next
+</div>
+
+ <h3>configurator::add()</h3>
+
+ <h4>signature</h4>
+<pre class="cpp">
+template< typename Option >
+option& configurator::add();
+</pre>
+
+ <h4>description</h4>
+
+ This function adds conceptual option.
+ <br/>
+ Template parameter Option corresponds to type of conceptual option defined with <strong>BOOST_CONFIGURATOR_OPTION</strong> macro.
+
+ <br/>
+ <h4>parameters</h4>
+
+ None.
+
+ <br/>
+ <h4>return</h4>
+
+ Reference to created option corresponding to conceptual option.
+
+ <br/>
+ <h4>exceptions</h4>
+
+ None.
+
+ <br/>
+ <h4>example</h4>
+
+<pre class="cpp">
+BOOST_CONFIGURATOR_OPTION( Host ) // Conceptual option 'Host' defined.
+
+int main() {
+ boost::cf::configurator conf;
+ conf.add< Host >();
+ // ...
+ return 0;
+}
+</pre>
+
+ <br/><br/>
+
+ <div class="last_revised">Last revised
+ <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->10
+ December, 2010<!--webbot bot="Timestamp" endspan i-checksum="38514" --></div>
+
+ <hr/>
+
+ <div class="navigation">
+Prev&nbsp;Up&nbsp;Home&nbsp;Next
+</div>
+ </body>
+</html>

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_configurator.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_get_value_of.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_load.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_reload.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_settings_send_warnings_to.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_case_sensitivity_for_names.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_close_section_edging.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_name_value_separator.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_one_line_comment_sign.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/configurator_settings_set_open_section_edging.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/option_allow_multi_values.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/option_check_semantic.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/option_set_default_value.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/option_set_location.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/option_set_necessity.html
==============================================================================

Added: sandbox/configurator/libs/configurator/doc/reference/single_configurator_inst.html
==============================================================================


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk