www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/+mbcgui/+util/containerPS.m

    classdef containerPS < handle
    %CONTAINERPS containerPS object
    %   Keeps track of packstatus and packgroup of containers
    
    %  Copyright 2014-2015 The MathWorks, Inc. and Ford Global Technologies, Inc.
    properties
        packstatus = false;
        packgroup = '';
    end
    
    methods
        function obj = containerPS()
            mlock;
        end
    end
end