1 %> @brief Calls a method from input
block
3 %> Has a constructor to set
string to evaluate.
7 %> String to be eval()
'd as 'input.%s
'
12 %> @param s String for the @c string property
13 function o = methodcaller(s)
17 o.classtitle = 'Method caller
';
26 methods(Access=protected)
27 function out = do_use(o, input) %#ok<*INUSD,*STOUT>
28 eval(sprintf('out = input.%s;
', o.string));
Calls a method from input block.