www.gusucode.com > matlabxl 工具箱 matlab 源码程序 > matlabxl/getAndResetChangedFiles.m

    function changedFiles = getAndResetChangedFiles()
% getAndResetChangedFiles returns the files that have been modified in Deploytool
% project since last call
% 
%
%   getAndResetChangedFiles is a utility for MATLAB Builder EX. 
%
%   SYNTAX:
%       getAndResetChangedFiles()
%
%   USAGE:
%       getAndResetChangedFiles()
%           returns the files that have been modified in Deploytool
% project since last call
%
%
%
% 
%
% Copyright 2010-2013, The MathWorks, Inc.
%        
  fws=com.mathworks.toolbox.compiler.services.FunctionWizardService.getInstance();
  changedFiles=fws.getAndResetChangedFiles(); 
end