Update of /cvsroot/pygccxml/source/pyplusplus/examples/tutorials
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20656/pyplusplus/examples/tutorials
Modified Files:
generate_code.py hello_world.py.cpp
Log Message:
Documentation improvments
Index: generate_code.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/examples/tutorials/generate_code.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** generate_code.py 11 Apr 2006 11:02:12 -0000 1.3
--- generate_code.py 12 Apr 2006 07:40:34 -0000 1.4
***************
*** 50,53 ****
--- 50,56 ----
mb.build_code_creator( module_name='hw' )
+ #It is common requirement in software world - each file should have license
+ mb.code_creator.license = '//Boost Software License( http://boost.org/more/license_info.html )'
+
#I don't want absolute includes within code
mb.code_creator.user_defined_directories.append( settings.working_dir )
Index: hello_world.py.cpp
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/examples/tutorials/hello_world.py.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** hello_world.py.cpp 6 Apr 2006 06:29:37 -0000 1.1
--- hello_world.py.cpp 12 Apr 2006 07:40:34 -0000 1.2
***************
*** 1,6 ****
// This file has been generated by pyplusplus.
// std directories: []
! // user defined directories: ['/home/roman/pygccxml_sources/source/pyplusplus/examples/tutorials']
#include "boost/python.hpp"
--- 1,8 ----
// This file has been generated by pyplusplus.
+ //Boost Software License( http://boost.org/more/license_info.html )
+
// std directories: []
! // user defined directories: ['d:\\pygccxml_sources\\source\\pyplusplus\\examples\\tutorials']
#include "boost/python.hpp"
|