Changeset 5235
- Timestamp:
- 08/13/10 10:49:02 (15 years ago)
- Location:
- issm/trunk/src/mex/BamgMesher
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/mex/BamgMesher/BamgMesher.cpp
r5233 r5235 1 /*\file Bamg .c2 *\brief: bamg module.1 /*\file BamgMesher.c 2 *\brief: mesher that uses the bamg library 3 3 */ 4 #include "./Bamg .h"4 #include "./BamgMesher.h" 5 5 6 6 void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){ … … 21 21 22 22 /*checks on arguments on the matlab side: */ 23 CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&Bamg Usage);23 CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&BamgMesherUsage); 24 24 25 25 /*Initialize variables*/ … … 50 50 } 51 51 52 void Bamg Usage(void){52 void BamgMeshUsage(void){ 53 53 _printf_("\n"); 54 54 _printf_(" usage: [bamgmesh,bamggeom]=%s(bamgmesh,bamggeom,bamgoptions);\n",__FUNCT__); -
issm/trunk/src/mex/BamgMesher/BamgMesher.h
r5233 r5235 1 1 /* 2 Bamg .h2 BamgMesherUsage.h 3 3 */ 4 4 5 #ifndef _BAMG_ H6 #define _BAMG_ H5 #ifndef _BAMG_MESHER_H_ 6 #define _BAMG_MESHER_H_ 7 7 8 8 /* local prototypes: */ 9 void Bamg Usage(void);9 void BamgMesherUsage(void); 10 10 11 11 #include "../../c/modules/modules.h" … … 14 14 15 15 #undef __FUNCT__ 16 #define __FUNCT__ "Bamg "16 #define __FUNCT__ "BamgMesher" 17 17 18 18 /* serial input macros: */ … … 31 31 #define NRHS 3 32 32 33 #endif /* _BAMG_ H*/33 #endif /* _BAMG_MESHER_H_ */ 34 34
Note:
See TracChangeset
for help on using the changeset viewer.