Main Content

RTW.TflCOperationEntryML Class

Namespace: RTW

Custom code replacement table operation entry

Description

Represent a custom code replacement operation entry. Derive a subclass from RTW.TflCOperationEntryML and, in the subclass, implement a do_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