Initial commit

This commit is contained in:
2017-09-19 11:58:36 +02:00
commit 557bbb0eae
66 changed files with 12510 additions and 0 deletions

12
mocha.cpp Normal file
View File

@@ -0,0 +1,12 @@
/* Source of MEX-file which will call the wrapper shared library.
We moved the previous content of the mexFunction to the wrapper library and now
call the function in the wrapper library instead.
*/
#include "macchinetta.h"
extern void _main();
void mexFunction(int nlhs,mxArray *plhs[],int nrhs, const mxArray *prhs[])
{
macchinettaFunction(nlhs,plhs,nrhs,prhs);
}