Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > eebc325dc36bd6e3b09b9b45133e42f8 > files > 3813

HippoDraw-devel-docs-1.21.1-10.fc13.i686.rpm

<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>HippoDraw Class Library</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="hippoApp.ico">
</head><body>
<!-- Generated by Doxygen 1.6.2 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
      <li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
    </ul>
  </div>
  <div class="navpath"><a class="el" href="dir_bd46360b4c6a7cd846adf95fa79d46e4.html">python</a>
  </div>
</div>
<div class="contents">
<h1>export_FunctionFactory.cxx</h1><a href="export__FunctionFactory_8cxx.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 
<a name="l00012"></a>00012 <span class="preprocessor">#ifdef _MSC_VER</span>
<a name="l00013"></a>00013 <span class="preprocessor"></span><span class="comment">// nonstandard extension used &#39;extern&#39; before...</span>
<a name="l00014"></a>00014 <span class="preprocessor"># pragma warning(disable:4231)  </span>
<a name="l00015"></a>00015 <span class="preprocessor"></span>
<a name="l00016"></a>00016 <span class="comment">// needs to have dll-interface used by client</span>
<a name="l00017"></a>00017 <span class="preprocessor"># pragma warning(disable:4251)  </span>
<a name="l00018"></a>00018 <span class="preprocessor"></span>
<a name="l00019"></a>00019 <span class="comment">// non dll-interface struct</span>
<a name="l00020"></a>00020 <span class="preprocessor"># pragma warning(disable:4275)  </span>
<a name="l00021"></a>00021 <span class="preprocessor"></span>
<a name="l00022"></a>00022 <span class="comment">// &#39;int&#39; : forcing value to bool &#39;true&#39; or &#39;false&#39; (performance warning)</span>
<a name="l00023"></a>00023 <span class="preprocessor"># pragma warning(disable:4800)  </span>
<a name="l00024"></a>00024 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00025"></a>00025 <span class="preprocessor"></span>
<a name="l00026"></a>00026 <span class="comment">// include first to avoid _POSIX_C_SOURCE warning.</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;boost/python.hpp&gt;</span>
<a name="l00028"></a>00028 
<a name="l00029"></a>00029 <span class="preprocessor">#include &quot;<a class="code" href="FunctionBase_8h.html" title="hippodraw::FunctionBase class interface">functions/FunctionBase.h</a>&quot;</span>
<a name="l00030"></a>00030 <span class="preprocessor">#include &quot;<a class="code" href="FunctionFactory_8h.html" title="FunctionFactory class interface.">functions/FunctionFactory.h</a>&quot;</span>
<a name="l00031"></a>00031 
<a name="l00032"></a>00032 <span class="keyword">using</span> std::vector;
<a name="l00033"></a>00033 <span class="keyword">using namespace </span>boost::python;
<a name="l00034"></a>00034 
<a name="l00035"></a>00035 <span class="keyword">namespace </span>hippodraw {
<a name="l00036"></a>00036 <span class="keyword">namespace </span>Python {
<a name="l00037"></a>00037 
<a name="l00038"></a>00038 <span class="keywordtype">void</span> 
<a name="l00039"></a>00039 <a class="code" href="namespacehippodraw_1_1Python.html#a674e64b357d52b324169bc51203c3e6e" title="Exports the FitterFactory.">export_FunctionFactory</a>()
<a name="l00040"></a>00040 {
<a name="l00041"></a>00041   class_ &lt; FunctionFactory, bases&lt;&gt;,
<a name="l00042"></a>00042     FunctionFactory, boost::noncopyable &gt;
<a name="l00043"></a>00043     ( <span class="stringliteral">&quot;FunctionFactory&quot;</span>,
<a name="l00044"></a>00044       <span class="stringliteral">&quot;The factory for creating derived classes of FunctionBase.&quot;</span>,
<a name="l00045"></a>00045       no_init )
<a name="l00046"></a>00046 
<a name="l00047"></a>00047     .def ( <span class="stringliteral">&quot;instance&quot;</span>,  &amp;<a class="code" href="classhippodraw_1_1FunctionFactory.html#a8029716d2f7aae5bea3fd5846f2d21f6" title="Returns a pointer to the singleton instance.">FunctionFactory::instance</a>,
<a name="l00048"></a>00048            return_value_policy &lt; reference_existing_object &gt;  (),
<a name="l00049"></a>00049            <span class="stringliteral">&quot;instance () -&gt; FunctionFactory\n&quot;</span>
<a name="l00050"></a>00050            <span class="stringliteral">&quot;\n&quot;</span>
<a name="l00051"></a>00051            <span class="stringliteral">&quot;Returns the single instance of the FunctionFactory.&quot;</span> )
<a name="l00052"></a>00052 
<a name="l00053"></a>00053     .staticmethod( <span class="stringliteral">&quot;instance&quot;</span> )
<a name="l00054"></a>00054 
<a name="l00055"></a>00055     .def ( <span class="stringliteral">&quot;names&quot;</span>, &amp;<a class="code" href="classhippodraw_1_1Factory.html#ab375ca98328f5bd02d39169ca515ef9d" title="Returns the list of available prototype names.">FunctionFactory::names</a>,
<a name="l00056"></a>00056            return_value_policy &lt; copy_const_reference &gt; (),
<a name="l00057"></a>00057            <span class="stringliteral">&quot;names () -&gt; sequence\n&quot;</span>
<a name="l00058"></a>00058            <span class="stringliteral">&quot;\n&quot;</span>
<a name="l00059"></a>00059            <span class="stringliteral">&quot;Returns the names of the available FunctinBase derived classes.&quot;</span> )
<a name="l00060"></a>00060 
<a name="l00061"></a>00061     .def ( <span class="stringliteral">&quot;create&quot;</span>, &amp;<a class="code" href="classhippodraw_1_1Factory.html#a1c53a3eab4f96ad0638fab10da2d6e03" title="Creates a new object from a prototype named name.">FunctionFactory::create</a>,
<a name="l00062"></a>00062            return_value_policy &lt; reference_existing_object &gt; (),
<a name="l00063"></a>00063            <span class="stringliteral">&quot;create ( string ) -&gt; FunctionBase\n&quot;</span>
<a name="l00064"></a>00064            <span class="stringliteral">&quot;\n&quot;</span>
<a name="l00065"></a>00065            <span class="stringliteral">&quot;Returns the newly created object derived from FunctionBase.&quot;</span> )
<a name="l00066"></a>00066 
<a name="l00067"></a>00067     .def ( <span class="stringliteral">&quot;add&quot;</span>, &amp;<a class="code" href="classhippodraw_1_1Factory.html#a8aee137075d50e6fca916a1dbfd388c3" title="Adds a prototype object to the list of prototypes.">FunctionFactory::add</a>,
<a name="l00068"></a>00068            with_custodian_and_ward_postcall &lt; 1, 2 &gt; (),
<a name="l00069"></a>00069            <span class="stringliteral">&quot;add ( FunctionBase ) -&gt; None\n&quot;</span>
<a name="l00070"></a>00070            <span class="stringliteral">&quot;\n&quot;</span>
<a name="l00071"></a>00071            <span class="stringliteral">&quot;Adds the function to the factory.&quot;</span> )
<a name="l00072"></a>00072 
<a name="l00073"></a>00073     ;
<a name="l00074"></a>00074 
<a name="l00075"></a>00075 }
<a name="l00076"></a>00076 
<a name="l00077"></a>00077 } <span class="comment">// namespace Python</span>
<a name="l00078"></a>00078 } <span class="comment">// namespace hippodraw</span>
</pre></div></div>
<hr size="1"><address style="align: right;"><small>
Generated for HippoDraw Class Library by <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0>
</a> </small></address>
</body>
</html>