function hout = editdlg(Constr)
%EDITDLG  Constructor for singleton instance of @editdlg
%        (dialog for editing plot constraints).

%   Authors: P. Gahinet
%   Copyright 1986-2002 The MathWorks, Inc. 
%   $Revision: 1.1.6.2 $ $Date: 2004/12/10 19:31:14 $

persistent h

% Create singleton instance 
if isempty(h)
    h = plotconstr.editdlg;
end

hout = h;
