MBMLFunctionOutputType Constants Reference
Declared in | MBMLFunction.h |
---|
MBMLFunctionOutputType
Specifies the type of output an MBMLFunction
implementation returns.
Definition
typedef NS_ENUM(NSUInteger, MBMLFunctionOutputType ) {
MBMLFunctionOutputUnset = 0,
MBMLFunctionOutputNone,
MBMLFunctionOutputObject,
MBMLFunctionOutputDefault = MBMLFunctionOutputObject,
};
Constants
MBMLFunctionOutputUnset
-
The function output type hasn’t yet been set. Used as an initial value when processing MBML
<Function>
declarations.Declared In
MBMLFunction.h
. MBMLFunctionOutputNone
-
The function returns no output. The implementing method should return
void
; any return value is ignored.Declared In
MBMLFunction.h
. MBMLFunctionOutputObject
-
The function returns an object instance as output.
Declared In
MBMLFunction.h
. MBMLFunctionOutputDefault
-
The function input type used by default:
MBMLFunctionOutputObject
.Declared In
MBMLFunction.h
.
Declared In
MBMLFunction.h