~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to raster/r.los/cmd_line.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/****************************************************************/
3
 
/*                                                              */
4
 
/*      This header file declares the global variables and the  */
5
 
/*      structures that are to be used for command line         */
6
 
/*      processing                                              */
7
 
/*                                                              */
8
 
 
9
 
/****************************************************************/
10
 
 
11
 
#ifdef MAIN
12
 
#define GLOBAL
13
 
#else
14
 
#define GLOBAL extern
15
 
#endif
16
 
 
17
 
GLOBAL double east;
18
 
GLOBAL double north;
19
 
GLOBAL double obs_elev;
20
 
GLOBAL double max_dist;
21
 
GLOBAL char *elev_layer;
22
 
GLOBAL char *patt_layer;
23
 
GLOBAL char *out_layer;