source: trunk/src/matlab/RpMatlabInterface.h @ 665

Last change on this file since 665 was 665, checked in by dkearney, 17 years ago

Updates to Rappture::Utils::progress for all languages
removed the dependancy on Rappture.Units from within number.py, it should only depend on Rappture which will include Rappture.Units
added Rappture.Units as a module to load when people import Rappture in python.
added -V pbs variable to queue.py to include qsub environment variables in the submitted job.
updated setup.py.in to install Rappture.Utils
added progress bar to all app-fermi examples showing how to use the Rappture::Utils::progress function in all languages.
added destructor definitions to Node classes in src2/core

File size: 1022 bytes
RevLine 
[97]1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: Rappture-Matlab Bindings Header
4 *
5 * ======================================================================
6 *  AUTHOR:  Derrick Kearney, Purdue University
[115]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.
[97]11 * ======================================================================
12 */
13
14#ifndef _Rp_MATLAB_HELPER_H
15#define _Rp_MATLAB_HELPER_H
16
[665]17#include "rappture.h"
[97]18#include "RpBindingsDict.h"
19
20// dont delete this, still working on making it happen
21//#include "rappture.h"
22
23// include the matlab api header
24#include "mex.h"
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30    int     getIntInput     ( const mxArray* prhs );
31    double  getDoubleInput  ( const mxArray* prhs );
32    char*   getStringInput  ( const mxArray* prhs );
33
34#ifdef __cplusplus
35}
36#endif
37
38#endif // _Rp_MATLAB_HELPER_H
Note: See TracBrowser for help on using the repository browser.