[mapserver-commits] r10972 - in trunk/mapserver/mapscript: . swiginc

svn at osgeo.org svn at osgeo.org
Tue Feb 8 16:17:01 EST 2011


Author: aboudreault
Date: 2011-02-08 13:17:01 -0800 (Tue, 08 Feb 2011)
New Revision: 10972

Added:
   trunk/mapserver/mapscript/swiginc/result.i
Modified:
   trunk/mapserver/mapscript/mapscript.i
Log:
Added result needed extend code for resultObj in SWIG/MapScript (#3647)

Modified: trunk/mapserver/mapscript/mapscript.i
===================================================================
--- trunk/mapserver/mapscript/mapscript.i	2011-02-08 19:39:03 UTC (rev 10971)
+++ trunk/mapserver/mapscript/mapscript.i	2011-02-08 21:17:01 UTC (rev 10972)
@@ -262,6 +262,7 @@
 %include "../swiginc/color.i"
 %include "../swiginc/hashtable.i"
 %include "../swiginc/resultcache.i"
+%include "../swiginc/result.i"
 %include "../swiginc/owsrequest.i"
 %include "../swiginc/connpool.i"
 %include "../swiginc/msio.i"

Added: trunk/mapserver/mapscript/swiginc/result.i
===================================================================
--- trunk/mapserver/mapscript/swiginc/result.i	                        (rev 0)
+++ trunk/mapserver/mapscript/swiginc/result.i	2011-02-08 21:17:01 UTC (rev 10972)
@@ -0,0 +1,50 @@
+/* ===========================================================================
+   $Id: shape.i 9558 2009-11-20 18:11:50Z sdlime $
+ 
+   Project:  MapServer
+   Purpose:  SWIG interface file for mapscript shapeObj extensions
+   Author:   Steve Lime 
+             Sean Gillies, sgillies at frii.com
+             
+   ===========================================================================
+   Copyright (c) 1996-2001 Regents of the University of Minnesota.
+   
+   Permission is hereby granted, free of charge, to any person obtaining a
+   copy of this software and associated documentation files (the "Software"),
+   to deal in the Software without restriction, including without limitation
+   the rights to use, copy, modify, merge, publish, distribute, sublicense,
+   and/or sell copies of the Software, and to permit persons to whom the
+   Software is furnished to do so, subject to the following conditions:
+ 
+   The above copyright notice and this permission notice shall be included
+   in all copies or substantial portions of the Software.
+ 
+   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+   DEALINGS IN THE SOFTWARE.
+   ===========================================================================
+*/
+
+%extend resultObj 
+{
+  
+    resultObj(long shapeindex) 
+    {
+        resultObj *result = (resultObj *) msSmallMalloc(sizeof(resultObj));
+
+        result->tileindex = -1;
+        result->resultindex = -1; 
+        result->shapeindex = shapeindex;
+        
+        return result;
+    }
+
+    ~resultObj() 
+    {
+        free(self);		
+    }
+}



More information about the mapserver-commits mailing list