Wrap

Used the annotate the member functions that wrap other member functions. Each instance must specify aither the type, the instance and the name of the function that's wrapped or the name of a context-free function. Each string must be colon-separated.

struct Wrap {}

Members

Variables

targets
string[] targets;
Undocumented in source.

Examples

struct Foo
{
	@Wrap(["Type:instance:name", "freeFunction"])
	void foo(){}
}

Meta