My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
MexHandler.h File Reference
#include <iostream>
#include <cmath>
#include "gcp/util/common/Debug.h"
#include "gcp/util/common/DataType.h"
#include "gcp/util/common/ErrHandler.h"
#include "gcp/util/common/Logger.h"
#include "gcp/util/common/MonitorDataType.h"
#include "gcp/util/common/RegDescription.h"
#include "gcp/util/common/RegParser.h"
#include "gcp/matlab/common/MexParser.h"
#include "mex.h"
#include "matrix.h"
#include <sstream>

Go to the source code of this file.

Classes

class  gcp::matlab::MexHandler
 
struct  gcp::matlab::MexHandler::MxArray
 

Macros

#define MXPRINT(statement)
 
#define MXPRINTN(statement)
 

Detailed Description

Tagged: Thu Sep 15 09:37:48 PDT 2005

Version
:
Revision:
1.4

,

Date:
2010/03/03 18:23:12
Author
Erik Leitch

Macro Definition Documentation

#define MXPRINT (   statement)
Value:
{\
std::ostringstream os;\
os.str("");\
os << statement << std::endl;\
mexPrintf(os.str().c_str());\
}
#define MXPRINTN (   statement)
Value:
{\
std::ostringstream os;\
os.str("");\
os << statement; \
mexPrintf(os.str().c_str());\
}