Vuo  2.3.2
Enumerations
VuoCompilerNodeClass.cc File Reference

Description

VuoCompilerNodeClass implementation.

Definition in file VuoCompilerNodeClass.cc.

Go to the source code of this file.

Enumerations

enum  VuoNodeArgumentAcceptance {
  INPUT_DATA_ABSENT = 1 << 0 , INPUT_DATA_PRESENT = 1 << 1 , OUTPUT_DATA_ABSENT = 1 << 2 , OUTPUT_DATA_PRESENT = 1 << 3 ,
  INPUT_EVENT_ABSENT = 1 << 4 , INPUT_EVENT_PRESENT = 1 << 5 , OUTPUT_EVENT_ABSENT = 1 << 6 , OUTPUT_EVENT_PRESENT = 1 << 7 ,
  OUTPUT_TRIGGER_ABSENT = 1 << 8 , OUTPUT_TRIGGER_PRESENT = 1 << 9 , INSTANCE_DATA_ABSENT = 1 << 10 , INSTANCE_DATA_PRESENT = 1 << 11
}
 Flags indicating how each kind of argument class is accepted in a node function's parameter list. More...
 

Enumeration Type Documentation

◆ VuoNodeArgumentAcceptance

Flags indicating how each kind of argument class is accepted in a node function's parameter list.

Specify *_PRESENT and *_ABSENT if optional, *_PRESENT if required, *_ABSENT if disallowed.

Definition at line 35 of file VuoCompilerNodeClass.cc.