source: issm/trunk/src/mex/Bamg/Bamg.h@ 3913

Last change on this file since 3913 was 3913, checked in by Eric.Larour, 15 years ago

Moved all objects in Bamg to objects directory.
Moved all solutions from parallel to solutoins.
Moved all modules from top c/ directory to c/modules directory
cleaned up all object dependencies in Bamg/objects (fiouh!)
That will do for the week-end:)

File size: 619 bytes
Line 
1/*
2 Bamg.h
3*/
4
5#ifndef _BAMG_H
6#define _BAMG_H
7
8/* local prototypes: */
9void BamgUsage(void);
10
11#include "../../c/modules/modules.h"
12#include "../../c/DataSet/DataSet.h"
13#include "../../c/shared/shared.h"
14
15#undef __FUNCT__
16#define __FUNCT__ "Bamg"
17
18/* serial input macros: */
19#define BAMGMESH (mxArray*)prhs[0]
20#define BAMGGEOMETRY (mxArray*)prhs[1]
21#define BAMGOPTIONS (mxArray*)prhs[2]
22
23/* serial output macros: */
24#define BAMGMESHOUT (mxArray**)&plhs[0]
25#define BAMGGEOMOUT (mxArray**)&plhs[1]
26
27/* serial arg counts: */
28#undef NLHS
29#define NLHS 2
30#undef NRHS
31#define NRHS 3
32
33#endif /* _BAMG_H */
34
Note: See TracBrowser for help on using the repository browser.