unit uDAIDEData; {----------------------------------------------------------------------------} { Data Abstract Library - IDE Library } { } { compiler: Delphi 6 and up, } { platform: Win32, Linux } { } { (c)opyright RemObjects Software. all rights reserved. } { } { Using this code requires a valid license of the Data Abstract } { which can be obtained at http://www.remobjects.com. } {----------------------------------------------------------------------------} {$IFDEF MSWINDOWS} {$I ..\DataAbstract.inc} {$ELSE} {$I ../DataAbstract.inc} {$ENDIF} interface uses {$IFDEF DELPHI5}Forms,{$ENDIF} {$IFDEF FPC}LResources,{$ENDIF} SysUtils, Classes, ImgList, Controls, Dialogs; type TDAIdeData = class(TDataModule) iml_Actions: TImageList; dlg_OpenBriefcase: TOpenDialog; dlg_SaveBriefcase: TSaveDialog; private { Private declarations } public { Public declarations } end; const ICON_REGENERATE = 1; ICON_IMPORT = 2; ICON_MAKESERVER = 3; implementation {$IFNDEF FPC} {$R *.dfm} {$ENDIF FPC} {$IFDEF FPC} initialization {$I uDAIDEData.lrs} {$ENDIF} end.