XPRestore.pas
上传用户:yjb1804
上传日期:2021-01-30
资源大小:3105k
文件大小:2k
源码类别:

Email服务器

开发平台:

Delphi

  1. unit XPRestore;
  2. {
  3.  $Source: /cvsroot/dunit/dunit/Contrib/DUnitWizard/Source/Common/XPRestore.pas,v $
  4.  $Revision: 1.1 $
  5.  $Date: 2004/05/03 15:07:15 $
  6.  Last amended by $Author: pvspain $
  7.  $State: Exp $
  8.  XPRestore:
  9.  Interface and base class to allow automated saving and restoring of state
  10.  within the current scope.
  11.  Thanks go out to Malcolm Groves of Madrigal Technologies,
  12.  http://www.madrigal.com.au, who brought the concept of IRestore to our
  13.  attention.
  14.  Copyright (c) 2001 by The Excellent Programming Company Pty Ltd
  15.  (Australia) (ABN 27 005 394 918).
  16.  Contact Don Macrae via email: din@xpro.com.au
  17.  This unit is free software; you can redistribute it and/or
  18.  modify it under the terms of the GNU Lesser General Public
  19.  License as published by the Free Software Foundation; either
  20.  version 2.1 of the License, or (at your option) any later version.
  21.  This unit is distributed in the hope that it will be useful,
  22.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  24.  Lesser General Public License for more details.
  25.  You should have received a copy of the GNU Lesser General Public
  26.  License along with this unit; if not, the license can be viewed at:
  27.  http://www.gnu.org/copyleft/lesser.html
  28.  or write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  29.  Boston, MA  02111-1307  USA
  30. }
  31. interface
  32. type
  33.   IXPRestore = interface
  34.     end;
  35.   TXPRestore = class( TInterfacedObject, IXPRestore )
  36.     end;
  37. implementation
  38. const CVSID: string = '$Header: /cvsroot/dunit/dunit/Contrib/DUnitWizard/Source/Common/XPRestore.pas,v 1.1 2004/05/03 15:07:15 pvspain Exp $';
  39. end.