RTW.TflCOperationEntryML - Custom code replacement table operation entry - MATLAB (original) (raw)
Main Content
Namespace: RTW
Custom code replacement table operation entry
Description
Represent a custom code replacement operation entry. Derive a subclass fromRTW.TflCOperationEntryML
and, in the subclass, implement ado_match
method that specifies the match criteria for the code replacement entry.
classdef MyElemMultEntry < RTW.TflCOperationEntryML
methods
function ent = do_match(hThis, ...
hCSO, ... %#ok
targetBitPerChar, ... %#ok
targetBitPerShort, ... %#ok
targetBitPerInt, ... %#ok
targetBitPerLong, ... %#ok
targetBitPerLongLong ) %#ok
% Implement custom do_match function
end
end
end
Creation
Description
classdef MyElemMultEntry < RTW.TflCOperationEntryML
creates a subclass for creating operation entry objects.
Version History
Introduced in R2010a