Update of /cvsroot/pygccxml/source/pyplusplus/file_writers
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6005/pyplusplus/file_writers
Modified Files:
__init__.py multiple_files.py single_file.py
Log Message:
I was ill and did not have my TortoiseCVS :-).
This commit contains documentation changes only.
Those changes had been done for latest release version.
Index: multiple_files.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/file_writers/multiple_files.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** multiple_files.py 9 Apr 2006 15:12:21 -0000 1.17
--- multiple_files.py 20 Apr 2006 04:06:43 -0000 1.18
***************
*** 12,16 ****
class multiple_files_t(writer.writer_t):
"""
! This class will implement classic strategy of deviding classes to files
one class in one header + source files.
"""
--- 12,16 ----
class multiple_files_t(writer.writer_t):
"""
! This class implements classic strategy of deviding classes to files
one class in one header + source files.
"""
Index: __init__.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/file_writers/__init__.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** __init__.py 6 Dec 2005 05:50:21 -0000 1.5
--- __init__.py 20 Apr 2006 04:06:43 -0000 1.6
***************
*** 4,7 ****
--- 4,19 ----
# http://www.boost.org/LICENSE_1_0.txt)
+ """
+ This package contains few classes, that writes L{code_creators.module_t} to files.
+
+ Right now 2 strategies were implemented:
+
+ 1. classic strategy of deviding classes to files one class in one header + source
+ files.
+
+ 2. all code is written in one file.
+
+ """
+
import types
from writer import writer_t
Index: single_file.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/file_writers/single_file.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** single_file.py 14 Dec 2005 09:09:52 -0000 1.8
--- single_file.py 20 Apr 2006 04:06:43 -0000 1.9
***************
*** 8,11 ****
--- 8,15 ----
class single_file_t(writer.writer_t):
+ """
+ This class writes all code into single file.
+ """
+
def __init__(self, extmodule, file_name):
writer.writer_t.__init__(self, extmodule)
|