home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kolekce / d56 / DM2KVCL.ZIP / DM2000_6.DPK < prev    next >
Text File  |  2001-09-18  |  1KB  |  50 lines

  1. {****************************************************************************}
  2. {                            Data Master 2000                                }
  3. {****************************************************************************}
  4. package DM2000;
  5.  
  6. {$R *.res}
  7. {$R 'DM2000.DCR'}
  8. {$ALIGN 8}
  9. {$ASSERTIONS ON}
  10. {$BOOLEVAL OFF}
  11. {$DEBUGINFO ON}
  12. {$EXTENDEDSYNTAX ON}
  13. {$IMPORTEDDATA ON}
  14. {$IOCHECKS ON}
  15. {$LOCALSYMBOLS ON}
  16. {$LONGSTRINGS ON}
  17. {$OPENSTRINGS ON}
  18. {$OPTIMIZATION OFF}
  19. {$OVERFLOWCHECKS ON}
  20. {$RANGECHECKS ON}
  21. {$REFERENCEINFO ON}
  22. {$SAFEDIVIDE OFF}
  23. {$STACKFRAMES ON}
  24. {$TYPEDADDRESS OFF}
  25. {$VARSTRINGCHECKS ON}
  26. {$WRITEABLECONST ON}
  27. {$MINENUMSIZE 1}
  28. {$IMAGEBASE $400000}
  29. {$DESCRIPTION 'VCL components for Data Master 2000'}
  30. {$IMPLICITBUILD OFF}
  31.  
  32. requires
  33.   vcl,
  34.   vclsmp,
  35.   designide;
  36.  
  37. contains
  38.   Common in 'Common.pas',
  39.   Parser in 'Parser.pas',
  40.   Data in 'Data.pas',
  41.   FloatEd in 'FloatEd.pas',
  42.   WorkGrid in 'WorkGrid.pas',
  43.   Plot in 'Plot.pas',
  44.   AxisDlg in 'AxisDlg.pas' {AxisPropsForm},
  45.   PlotEdit in 'PlotEdit.pas',
  46.   SerieDlg in 'SerieDlg.pas' {SeriePropsForm},
  47.   TextDlg in 'TextDlg.pas' {TextForm};
  48.  
  49. end.
  50.