Vuo
0.5.3
|
A modular component (i.e., node class or type) that is an add-on to the core Vuo framework.
Public Member Functions | |
VuoModule (string moduleKey) | |
Creates a module. | |
string | getModuleKey (void) |
Returns this module's unique name. | |
string | getDefaultTitle (void) |
Returns the default title for instances of this module, as specified by the .vuonode/.bc implementation. | |
void | setDefaultTitle (string defaultTitle) |
Sets the default title for instances of this module. | |
string | getDescription (void) |
Returns the description of this module provided as documentation. | |
void | setDescription (string description) |
Sets the description of this module provided as documentation. | |
string | getVersion (void) |
Returns the module's version, in Semantic Versioning format. | |
void | setVersion (string version) |
Sets the module's version, in Semantic Versioning format. | |
vector< string > | getKeywords (void) |
Returns a list of the module's keywords. | |
void | setKeywords (vector< string > keywords) |
Sets the module's keywords. | |
VuoModule::VuoModule | ( | string | moduleKey | ) |
Creates a module.
moduleKey | A unique name for this module. |
string VuoModule::getDefaultTitle | ( | void | ) |
Returns the default title for instances of this module, as specified by the .vuonode/.bc implementation.
Needn't be unique.
UTF-8.
string VuoModule::getDescription | ( | void | ) |
Returns the description of this module provided as documentation.
vector< string > VuoModule::getKeywords | ( | void | ) |
Returns a list of the module's keywords.
string VuoModule::getModuleKey | ( | void | ) |
Returns this module's unique name.
string VuoModule::getVersion | ( | void | ) |
Returns the module's version, in Semantic Versioning format.
void VuoModule::setDefaultTitle | ( | string | defaultTitle | ) |
Sets the default title for instances of this module.
Needn't be unique.
UTF-8.
void VuoModule::setDescription | ( | string | description | ) |
Sets the description of this module provided as documentation.
void VuoModule::setKeywords | ( | vector< string > | keywords | ) |
Sets the module's keywords.
void VuoModule::setVersion | ( | string | version | ) |
Sets the module's version, in Semantic Versioning format.