summaryrefslogtreecommitdiffstats
path: root/matlab/mex/mexHelpFunctions.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <wjp@usecode.org>2018-10-23 12:20:18 +0200
committerGitHub <noreply@github.com>2018-10-23 12:20:18 +0200
commiteb97daad97596d54e0da8987ef1c5b1dd91c124f (patch)
treee0f98656f13716b42898c6aefd8abbcc7353d4bc /matlab/mex/mexHelpFunctions.h
parent6730face204f40c57c3e8fe58ea9749494d669a6 (diff)
parent03ff113ac48f21956247b164a83000b5f6ab311d (diff)
downloadastra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.tar.gz
astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.tar.bz2
astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.tar.xz
astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.zip
Merge pull request #170 from wjp/feature_flags
Add support for checking features at run-time
Diffstat (limited to 'matlab/mex/mexHelpFunctions.h')
-rw-r--r--matlab/mex/mexHelpFunctions.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/matlab/mex/mexHelpFunctions.h b/matlab/mex/mexHelpFunctions.h
index bf22929..56994dc 100644
--- a/matlab/mex/mexHelpFunctions.h
+++ b/matlab/mex/mexHelpFunctions.h
@@ -28,6 +28,10 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>.
#ifndef _INC_ASTRA_MEX_HELPFUNCTIONS
#define _INC_ASTRA_MEX_HELPFUNCTIONS
+
+#define USE_MATLAB_UNDOCUMENTED
+
+
#include <string>
#include <list>
#include <iostream>
@@ -66,6 +70,4 @@ mxArray* XMLNodeToStruct(astra::XMLNode xml);
mxArray* stringToMxArray(std::string input);
mxArray* buildStruct(std::map<std::string, mxArray*> mInput);
-
-
#endif