source: issm/trunk/src/modules/BamgTriangulate/BamgTriangulate.h@ 12331

Last change on this file since 12331 was 12331, checked in by Mathieu Morlighem, 13 years ago

merged trunk-jpl and trunk for revision 12326M

File size: 671 bytes
RevLine 
[10205]1/*!\file BamgTriangulate.h
2 * \brief: prototype for Data Interpolation mex module.
3 */
4
5#ifndef _BAMGTRIANGULATE_H
6#define _BAMGTRIANGULATE_H
7
8/* local prototypes: */
9void BamgTriangulateUsage(void);
10
[11933]11#include "../../c/include/globals.h"
[10205]12#include "../../c/modules/modules.h"
13#include "../../c/Container/Container.h"
14#include "../../c/shared/shared.h"
[12013]15#include "../../c/issm-binding.h"
[10205]16
17#undef __FUNCT__
18#define __FUNCT__ "BamgTriangulate"
19
20
21/* serial input macros: */
22#define XHANDLE prhs[0]
23#define YHANDLE prhs[1]
24
25/* serial output macros: */
26#define INDEX (mxArray**)&plhs[0]
27
28/* serial arg counts: */
29#undef NLHS
30#define NLHS 1
31#undef NRHS
32#define NRHS 2
33
34#endif
Note: See TracBrowser for help on using the repository browser.