~ubuntu-branches/ubuntu/karmic/grass/karmic

« back to all changes in this revision

Viewing changes to include/vect/dig_defines.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2009-07-13 13:34:03 UTC
  • mfrom: (3.1.15 karmic)
  • Revision ID: james.westby@ubuntu.com-20090713133403-0x81m7hb1q06zu13
Tags: 6.4.0~rc5-2
* Added a grass menu item (Hamish).
* Added a grass.menu.in template with related icon.
* Added a simple x-grass wrapper to allow running grass without a pre-running
  controlling terminal. At least it works within ordinary WMs launchers.
  (closes: #503371)
* Added newlocation.dpatch patch to manage correctly new locations.
  (closes: #533738)

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
#define GV_ON_AND     "AND"     /* intersect */
163
163
#define GV_ON_OVERLAP "OVERLAP"
164
164
 
165
 
typedef enum
 
165
enum overlay_operator
166
166
{
167
167
    GV_O_AND,
168
168
    GV_O_OVERLAP
169
 
} OVERLAY_OPERATOR;
 
169
};
170
170
 
 
171
typedef enum overlay_operator OVERLAY_OPERATOR;
171
172
 
172
173
#define ESC     033
173
174