From 1fa81f84fc9be58719d727ac632ec9d9bdc4ef30 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Wed, 28 Oct 2009 14:02:29 +0000 Subject: [PATCH] added isArgUndef macro git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1581 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/AmArg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/core/AmArg.h b/core/AmArg.h index 1fd1baa9..a0dc91c2 100644 --- a/core/AmArg.h +++ b/core/AmArg.h @@ -187,6 +187,7 @@ class AmArg AmArg& operator=(const AmArg& rhs); +#define isArgUndef(a) (AmArg::Undef == a.getType()) #define isArgArray(a) (AmArg::Array == a.getType()) #define isArgStruct(a)(AmArg::Struct == a.getType()) #define isArgDouble(a) (AmArg::Array == a.getType())