function h = recorder
% Returns singleton instance of @recorder class

%   Copyright 1986-2004 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:39:53 $

persistent thisrecorder;

if isempty(thisrecorder) || ~ishandle(thisrecorder)
    thisrecorder = tsguis.recorder;
end

h =  thisrecorder;
