Update of /cvsroot/pygccxml/source/pygccxml/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5473
Modified Files:
config.py
Log Message:
Added doc strings (I just noticed that I hadn't committed that file yet)
Index: config.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pygccxml/parser/config.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** config.py 28 Feb 2006 07:11:09 -0000 1.13
--- config.py 11 Apr 2006 15:03:07 -0000 1.14
***************
*** 4,8 ****
--- 4,16 ----
# http://www.boost.org/LICENSE_1_0.txt)
+ """This module contains the implementation of the L{config_t} class.
+ """
+
class config_t(object):
+ """Configuration object to collect parameters for invoking gccxml.
+
+ This class serves as a container for the parameters that can be used
+ to customize the call to gccxml.
+ """
def __init__( self
, gccxml_path=''
***************
*** 13,16 ****
--- 21,26 ----
, start_with_declarations=None
, verbose=False):
+ """Constructor.
+ """
object.__init__( self )
self.__gccxml_path = gccxml_path
|