gusucode.com > visionhdl工具箱matlab源码程序 > visionhdl/visionhdlexamples/+slstart/+internal/VisionHDLToolboxFeaturedExampleProvider.m

    classdef VisionHDLToolboxFeaturedExampleProvider < slstart.internal.FeaturedExampleProvider
    % Featured Examples for Vision HDL Toolbox.

    % Copyright 2015 The MathWorks, Inc.

    properties (GetAccess = public, SetAccess = private)
        % The customer visible product name this example ships with
        Product = 'Vision HDL Toolbox';

        % The short name for this product as used by the Help Browser.
        ProductShortName = 'visionhdl';

        % Names of featured examples in this product.
        FeaturedExamples = {'EdgeDetectionAndOverlayHDLExample',...
            'CornerDetectionHDLExample',...
            'PixelStreamingDesignHDLExample'};

        % Message catalog root for translating strings for these examples.
        MessageCatalogRoot = 'visionhdl:featured';
    end
end