1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef IGL_VALIDATE_ARG_H
- #define IGL_VALIDATE_ARG_H
- #include "../igl_inline.h"
- #include <mex.h>
- namespace igl
- {
- namespace matlab
- {
-
-
-
-
-
-
-
- IGL_INLINE void validate_arg_scalar(
- const int i, const int nrhs, const mxArray * prhs[], const char * name);
- IGL_INLINE void validate_arg_logical(
- const int i, const int nrhs, const mxArray * prhs[], const char * name);
- IGL_INLINE void validate_arg_char(
- const int i, const int nrhs, const mxArray * prhs[], const char * name);
- IGL_INLINE void validate_arg_double(
- const int i, const int nrhs, const mxArray * prhs[], const char * name);
- IGL_INLINE void validate_arg_function_handle(
- const int i, const int nrhs, const mxArray * prhs[], const char * name);
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "validate_arg.cpp"
- #endif
- #endif
|