1 {
2 *****************************************************************************
3 *                                                                           *
4 *  This file is part of the ZCAD                                            *
5 *                                                                           *
6 *  See the file COPYING.modifiedLGPL.txt, included in this distribution,    *
7 *  for details about the copyright.                                         *
8 *                                                                           *
9 *  This program is distributed in the hope that it will be useful,          *
10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                     *
12 *                                                                           *
13 *****************************************************************************
14 }
15 {
16 @author(Andrey Zubarev <zamtmn@yandex.ru>)
17 }
18 
19 unit uabstractunit;
20 {$INCLUDE def.inc}
21 {$MODE DELPHI}
22 interface
23 uses
24   uzbtypes;
25 type
26 {Export+}
27   PTAbstractUnit=^TAbstractUnit;
28   TAbstractUnit={$IFNDEF DELPHI}packed{$ENDIF} object(GDBaseobject)
29             end;
30 {Export-}
31 implementation
32 end.
33 
34