]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_simplepython.cpp
Fixed Library Browser...
[architektonas] / src / base / rs_simplepython.cpp
index a25563d6036cb424fcb8e839a4b002d2d6fbd6bf..0ea2e1b48f27c45f6ddcaf3a46071f9b330e0c65 100644 (file)
@@ -1,29 +1,18 @@
-/****************************************************************************
-** $Id: rs_simplepython.cpp 1775 2003-11-02 12:20:46Z andrew $
-**
-** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
-**
-** This file is part of the qcadlib Library project.
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** Licensees holding valid qcadlib Professional Edition licenses may use 
-** this file in accordance with the qcadlib Commercial License
-** Agreement provided with the Software.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-** See http://www.ribbonsoft.com for further details.
-**
-** Contact info@ribbonsoft.com if any conditions of this licensing are
-** not clear to you.
-**
-**********************************************************************/
-
+// rs_simplepython.cpp
+//
+// Part of the Architektonas Project
+// Originally part of QCad Community Edition by Andrew Mustun
+// Extensively rewritten and refactored by James L. Hammons
+// Portions copyright (C) 2001-2003 RibbonSoft
+// Copyright (C) 2010 Underground Software
+// See the README and GPLv2 files for licensing and warranty information
+//
+// JLH = James L. Hammons <jlhamm@acm.org>
+//
+// Who  When        What
+// ---  ----------  -----------------------------------------------------------
+// JLH  06/02/2010  Added this text. :-)
+//
 
 #ifdef RS_OPT_SIMPLEPYTHON
 #include "rs_simplepython.h"
@@ -91,7 +80,7 @@ int RS_SimplePython::launch(const QString& script) {
 
 
 /**
- * A test method exposed to Python 
+ * A test method exposed to Python
  */
 long inc(long i) {
     printf("c: inc called\n");
@@ -117,7 +106,7 @@ void rsPyAddLine(double x1, double y1, double x2, double y2) {
     //printf("c: addLine called\n");
     //printf("c: parameter from python: %f\n", x1);
 
-    RS_Graphic* graphic = RS_SIMPLEPYTHON->getGraphic();
+    Drawing* graphic = RS_SIMPLEPYTHON->getGraphic();
     if (graphic!=NULL) {
         graphic->addEntity(new RS_Line(graphic,
                                        RS_LineData(RS_Vector(x1, y1),