3#include <VisualScriptPlugin/Runtime/VisualScript.h>
virtual void Execute(void *pInstance, plArrayPtr< plVariant > arguments, plVariant &out_returnValue) const =0
Calls the function. Provide the instance on which the function is supposed to be called.
The base class for all message handlers that a type provides.
Definition MessageHandler.h:12
This class encapsulates an array and it's size. It is recommended to use this class instead of plain ...
Definition ArrayPtr.h:37
Base class for all message types. Each message type has it's own id which is used to dispatch message...
Definition Message.h:22
This class holds information about reflected types. Each instance represents one type that is known t...
Definition RTTI.h:30
Definition ScriptRTTI.h:38
Definition ScriptRTTI.h:54
A Shared ptr manages a shared object and destroys that object when no one references it anymore....
Definition SharedPtr.h:10
plStringView represent a read-only sub-string of a larger string, as it can store a dedicated string ...
Definition StringView.h:34
plVariant is a class that can store different types of variables, which is useful in situations where...
Definition Variant.h:44
Definition VisualScriptData.h:91
Definition VisualScriptFunctionProperty.h:6
virtual const plRTTI * GetArgumentType(plUInt32 uiParamIndex) const override
Returns the type of the given argument.
Definition VisualScriptFunctionProperty.h:15
virtual plBitflags< plPropertyFlags > GetArgumentFlags(plUInt32 uiParamIndex) const override
Returns the property flags of the given argument.
Definition VisualScriptFunctionProperty.h:16
virtual const plRTTI * GetReturnType() const override
Returns the type of the return value.
Definition VisualScriptFunctionProperty.h:12
virtual plFunctionType::Enum GetFunctionType() const override
Returns the type of function, see plFunctionPropertyType::Enum.
Definition VisualScriptFunctionProperty.h:11
virtual plUInt32 GetArgumentCount() const override
Returns the number of arguments.
Definition VisualScriptFunctionProperty.h:14
virtual plBitflags< plPropertyFlags > GetReturnFlags() const override
Returns property flags of the return value.
Definition VisualScriptFunctionProperty.h:13
Definition VisualScriptFunctionProperty.h:26
The plBitflags class allows you to work with type-safe bitflags.
Definition Bitflags.h:82
Enum
Definition AbstractProperty.h:525
@ Member
A normal member function, a valid instance pointer must be provided to call.
Definition AbstractProperty.h:526
Definition ScriptRTTI.h:48