source: trunk/include/matlab/RpMatlabInterface.h @ 115

Last change on this file since 115 was 115, checked in by mmc, 19 years ago

Updated all copyright notices.

File size: 1.0 KB
Line 
1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: Rappture-Matlab Bindings Header
4 *
5 * ======================================================================
6 *  AUTHOR:  Derrick Kearney, Purdue University
7 *  Copyright (c) 2004-2005  Purdue Research Foundation
8 *
9 *  See the file "license.terms" for information on usage and
10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11 * ======================================================================
12 */
13
14#ifndef _Rp_MATLAB_HELPER_H
15#define _Rp_MATLAB_HELPER_H
16
17#include "RpBindingsDict.h"
18#include "RpLibraryCInterface.h"
19#include "RpUnits.h"
20
21// dont delete this, still working on making it happen
22//#include "rappture.h"
23
24// include the matlab api header
25#include "mex.h"
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31    int     getIntInput     ( const mxArray* prhs );
32    double  getDoubleInput  ( const mxArray* prhs );
33    char*   getStringInput  ( const mxArray* prhs );
34
35#ifdef __cplusplus
36}
37#endif
38
39#endif // _Rp_MATLAB_HELPER_H
Note: See TracBrowser for help on using the repository browser.