/*!\file Shp2Kml.h * \brief: prototype for shp to kml file conversion mex module. */ #ifndef _SHP2KML_H #define _SHP2KML_H /* local prototypes: */ void Shp2KmlUsage(void); #include "../../c/include/globals.h" #include "../../c/modules/modules.h" #include "../../c/Container/Container.h" #include "../../c/shared/shared.h" #include "../../c/issm-binding.h" #undef __FUNCT__ #define __FUNCT__ "Shp2Kml" /* serial input macros: */ #define SHP_IN prhs[0] #define KML_IN prhs[1] #define SGN_IN prhs[2] /* serial output macros: */ #define RET_OUT (mxArray**)&plhs[0] /* serial arg counts: */ #undef NRHS #define NRHS 3 #undef NLHS #define NLHS 1 #endif