Ignore:
Timestamp:
10/19/11 14:10:26 (13 years ago)
Author:
jschierm
Message:

Shp2Kml: Initial commit of Shp2Kml module for translating shp file to kml file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/mex/Shp2Kml/Shp2Kml.h

    r10229 r10239  
    1 
    2 /*
    3         Shp2Kml.h
    4 */
    5 
     1/*!\file Shp2Kml.h
     2 * \brief: prototype for shp to kml file conversion mex module.
     3 */
    64
    75#ifndef _SHP2KML_H
     
    1816#define __FUNCT__  "Shp2Kml"
    1917
     18
    2019/* serial input macros: */
    21 #define NODESIN (mxArray*)prhs[0]
    22 #define CONSTRAINTS (mxArray*)prhs[1]
    23 #define PARAMETERS (mxArray*)prhs[2]
    24 #define ANALYSISTYPE (mxArray*)prhs[3]
     20#define SHP_IN    prhs[0]
     21#define KML_IN    prhs[1]
     22#define SGN_IN    prhs[2]
    2523
    2624/* serial output macros: */
    27 #define NODES (mxArray**)&plhs[0]
     25#define RET_OUT    (mxArray**)&plhs[0]
    2826
    2927/* serial arg counts: */
     28#undef NRHS
     29#define NRHS  3
    3030#undef NLHS
    3131#define NLHS  1
    32 #undef NRHS
    33 #define NRHS  4
    3432
     33#endif
    3534
    36 #endif  /* _SHP2KML_H */
    37 
Note: See TracChangeset for help on using the changeset viewer.