2012-02-07 03:45:40 +08:00
|
|
|
// automatically generated by wrap
|
|
|
|
|
#include <wrap/matlab.h>
|
|
|
|
|
#include <Point2.h>
|
|
|
|
|
void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[])
|
|
|
|
|
{
|
|
|
|
|
checkArguments("argChar",nargout,nargin-1,1);
|
2012-05-30 03:29:29 +08:00
|
|
|
boost::shared_ptr<Point2> self = unwrap_shared_ptr< Point2 >(in[0],"Point2");
|
2012-02-07 03:45:40 +08:00
|
|
|
char a = unwrap< char >(in[1]);
|
|
|
|
|
self->argChar(a);
|
|
|
|
|
}
|