From: Roman <rom...@us...> - 2006-04-06 17:44:51
|
Update of /cvsroot/pygccxml/source/pyplusplus/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19394/pyplusplus/scripts Added Files: pyplusplus_gui pyplusplus_gui.pyw Log Message: 1. adding scripts to run py++ gui from command line 2. updating pyplusplus introduction --- NEW FILE: pyplusplus_gui --- #!/usr/bin/python # # Call the graphical interface for pyplusplus. # # Copyright 2004 Roman Yakovenko. # Distributed under the Boost Software License, Version 1.0. (See # accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) from pyplusplus.gui import show_demo show_demo() --- NEW FILE: pyplusplus_gui.pyw --- #!/usr/bin/python # # Call the graphical interface for pyplusplus. # # Copyright 2004 Roman Yakovenko. # Distributed under the Boost Software License, Version 1.0. (See # accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) from pyplusplus.gui import show_demo show_demo() |