[pygccxml-commit] source/pyplusplus/decl_wrappers __init__.py,1.3,1.4
Brought to you by:
mbaas,
roman_yakovenko
From: Matthias B. <mb...@us...> - 2006-03-10 10:57:36
|
Update of /cvsroot/pygccxml/source/pyplusplus/decl_wrappers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21571/decl_wrappers Modified Files: __init__.py Log Message: Added doc strings Index: __init__.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/decl_wrappers/__init__.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** __init__.py 9 Mar 2006 01:47:19 -0000 1.3 --- __init__.py 10 Mar 2006 10:57:31 -0000 1.4 *************** *** 4,7 **** --- 4,37 ---- # http://www.boost.org/LICENSE_1_0.txt) + """Declaration decorators. + + This sub-package contains the pyplusplus specific declaration objects + that are the nodes of the declaration tree. In addition to the + interface of the declarations in the pygccxml package the objects in + this package also provide a I{decoration} interface. This interface + allows customizing the bindings and influences the code creators that + have to be generated in subsequent steps. + + Each node is derived from its corresponding node in the pygccxml + package and from a decorator base class. + + You may encounter the following objects in a declaration tree: + + - L{namespace_t} + - L{typedef_t} + - L{variable_t} + - L{enumeration_t} + - L{casting_operator_t} + - L{free_function_t} + - L{free_operator_t} + - L{class_declaration_t} + - L{class_t} + - L{constructor_t} + - L{destructor_t} + - L{member_function_t} + - L{member_operator_t} + + """ + from decl_wrapper import decl_wrapper_t |