source: issm/trunk/src/wrappers/IssmConfig/IssmConfig.h@ 16137

Last change on this file since 16137 was 15905, checked in by Mathieu Morlighem, 12 years ago

NEW: added IssmConfig that will replace ismpi and other functions

File size: 1008 bytes
Line 
1/*!\file: IssmConfig.h
2 * \brief header file for IssmConfig module.
3 */
4
5#ifndef _ISSMCONFIG_H
6#define _ISSMCONFIG_H
7
8#ifdef HAVE_CONFIG_H
9 #include <config.h>
10#else
11 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
12#endif
13
14/*For python modules: needs to come before header files inclusion*/
15#ifdef _HAVE_PYTHON_
16#define PY_ARRAY_UNIQUE_SYMBOL PythonIOSymbol
17#endif
18
19/*Header files: */
20#include "../bindings.h"
21#include "../../c/main/globals.h"
22#include "../../c/shared/Enum/Enum.h"
23#include "../../c/shared/shared.h"
24
25#undef __FUNCT__
26#define __FUNCT__ "IssmConfig"
27
28#ifdef _HAVE_MATLAB_MODULES_
29/* serial input macros: */
30#define NAME (mxArray*)prhs[0]
31/* serial output macros: */
32#define VALUE (mxArray**)&plhs[0]
33#endif
34
35#ifdef _HAVE_PYTHON_MODULES_
36/* serial input macros: */
37#define NAME PyTuple_GetItem(args,0)
38/* serial output macros: */
39#define VALUE output,0
40#endif
41
42/* serial arg counts: */
43#undef NLHS
44#define NLHS 1
45#undef NRHS
46#define NRHS 1
47
48#endif /* _TEST_H */
Note: See TracBrowser for help on using the repository browser.