python.dir
Go to the documentation of this file.
1 /** @dir python
2 
3 This directory contains source and header files of classes related to
4 a python extension module.
5 
6 This directory contains source and header files of classes related to
7 a python extension module built with Boost.Python. It also contains a
8 derived class of DataSource, and ListTuple that uses Python list objects.
9 In addition, there are several Python files used by the hippoplotter module.
10 
11 @bug @@ hsimple.py and pl_exp_test.py, don't do anything under
12 run_test_scripts.py. (This isn't a bug. run_test_scripts.py launches
13 scripts using the import command. Since hsimple.py and pl_exp_test.py
14 are launched by SciPy_demo.py before they are launched by
15 run_test_scripts.py, Python's import mechanism prevents the scripts
16 from being re-run.)
17 
18 */
19 
20 
21 /** @brief The namespace for the boost C++ libraries.
22 
23 @sa <a href="http://www.boost.org"> Boost.org </a> details.
24 */
25 namespace boost {
26 
27 /** @brief The namespace for the boost::python class library.
28 
29 The namespace for the boost::python class library. boost::python is a
30 component of the Boost.org C++ class libraries and is used to generate
31 the hippo Python extension module.
32 
33 @sa <a href="http://www.boost.org/libs/python/doc/index.html">
34 Boost.Python</a> for details.
35 
36 */
37  namespace python {
38 
39  /** A wrapper class for Python list objects.
40  */
41  class list {};
42 
43  /** A wrapper class for Python tuple objects.
44  */
45  class tuple {};
46  }
47 }

Generated for HippoDraw Class Library by doxygen