~ubuntu-branches/ubuntu/saucy/mapserver/saucy-security

« back to all changes in this revision

Viewing changes to mapscript/swiginc/cluster.i

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-12-23 14:02:06 UTC
  • mfrom: (26.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111223140206-n3h9t2hsa8hyslmu
Tags: 6.0.1-2
Added missed stuff for libmapscript-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ===========================================================================
 
2
   $Id: cluster.i 11056 2011-03-03 22:21:25Z tamas $
 
3
 
 
4
   Project:  MapServer
 
5
   Purpose:  SWIG interface file for mapscript clusterObj extensions
 
6
   Author:   Tamas Szekeres
 
7
 
 
8
   ===========================================================================
 
9
   Copyright (c) 1996-2007 Regents of the University of Minnesota.
 
10
 
 
11
   Permission is hereby granted, free of charge, to any person obtaining a
 
12
   copy of this software and associated documentation files (the "Software"),
 
13
   to deal in the Software without restriction, including without limitation
 
14
   the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
15
   and/or sell copies of the Software, and to permit persons to whom the
 
16
   Software is furnished to do so, subject to the following conditions:
 
17
 
 
18
   The above copyright notice and this permission notice shall be included
 
19
   in all copies or substantial portions of the Software.
 
20
 
 
21
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
22
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
23
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 
24
   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
25
   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
26
   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
27
   DEALINGS IN THE SOFTWARE.
 
28
   ===========================================================================
 
29
*/
 
30
 
 
31
%extend clusterObj
 
32
{
 
33
  int updateFromString(char *snippet)
 
34
  {
 
35
    return msUpdateClusterFromString(self, snippet);
 
36
  }
 
37
  
 
38
  int setGroup(char *group) 
 
39
  {
 
40
    if (!group || strlen(group) == 0) {
 
41
       freeExpression(&self->group);
 
42
       return MS_SUCCESS;
 
43
    }
 
44
    else return msLoadExpressionString(&self->group, group);
 
45
  }
 
46
 
 
47
  %newobject getGroupString;
 
48
  char *getGroupString() {
 
49
    return msGetExpressionString(&(self->group));
 
50
  }
 
51
 
 
52
  int setFilter(char *filter) {
 
53
    if (!filter || strlen(filter) == 0) {
 
54
      freeExpression(&self->filter);
 
55
      return MS_SUCCESS;
 
56
    }   
 
57
    else return msLoadExpressionString(&self->filter, filter);
 
58
  }
 
59
 
 
60
  %newobject getFilterString;
 
61
  char *getFilterString() {
 
62
    return msGetExpressionString(&(self->filter));
 
63
  }
 
64
}