Update of /cvsroot/pygccxml/source/pyplusplus/code_repository
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6005/pyplusplus/code_repository
Modified Files:
__init__.py array_1.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: array_1.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/code_repository/array_1.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** array_1.py 23 Nov 2005 06:09:53 -0000 1.2
--- array_1.py 20 Apr 2006 04:06:41 -0000 1.3
***************
*** 4,7 ****
--- 4,12 ----
# http://www.boost.org/LICENSE_1_0.txt)
+ """
+ This file contains C++ code needed to export one dimensional static arrays.
+ """
+
+
namespace = "pyplusplus::containers::static_sized"
Index: __init__.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/code_repository/__init__.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** __init__.py 22 Nov 2005 09:38:15 -0000 1.1
--- __init__.py 20 Apr 2006 04:06:41 -0000 1.2
***************
*** 4,11 ****
# http://www.boost.org/LICENSE_1_0.txt)
! #The basic idea after this package is to create C++ classes and functions
! #that will help to export C++ code.
! import array_1
all = [ array_1 ]
\ No newline at end of file
--- 4,17 ----
# http://www.boost.org/LICENSE_1_0.txt)
+ """
+ Code repository package is used as a repository of C++ classes/functions.
+ Those classes/functions solve problems, that are typical to most projects.
+ Right now, this package contains set of classes that help to export one
+ dimensional static arrays. For example:
! C{char data[23];}
+ """
+
+ import array_1
all = [ array_1 ]
\ No newline at end of file
|