function this = allExportdlg(parent)
% EXCELIMPORTDLG is the constructor of the class, which imports time series
% from an excel workbook into tstool

% Author: Rong Chen 
% Revised: 
% Copyright 1986-2004 The MathWorks, Inc.

% -------------------------------------------------------------------------
% create a singleton of this import dialog
% -------------------------------------------------------------------------
persistent exportdlg;
if isempty(exportdlg)
    exportdlg = tsguis.allExportdlg;
    this = exportdlg; 
else
    this = exportdlg; 
    return
end
