git-svn-id: https://192.168.0.254/svn/Proyectos.ConstruccionesCNJ_FactuGES/trunk@4 6cb6b671-b4a0-dd4c-8bdc-3006503d97e9
52 lines
881 B
ObjectPascal
52 lines
881 B
ObjectPascal
package ClassRegistry;
|
|
|
|
{$R *.res}
|
|
{$ALIGN 8}
|
|
{$ASSERTIONS ON}
|
|
{$BOOLEVAL OFF}
|
|
{$DEBUGINFO ON}
|
|
{$EXTENDEDSYNTAX ON}
|
|
{$IMPORTEDDATA ON}
|
|
{$IOCHECKS ON}
|
|
{$LOCALSYMBOLS ON}
|
|
{$LONGSTRINGS ON}
|
|
{$OPENSTRINGS ON}
|
|
{$OPTIMIZATION ON}
|
|
{$OVERFLOWCHECKS OFF}
|
|
{$RANGECHECKS OFF}
|
|
{$REFERENCEINFO ON}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES OFF}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $400000}
|
|
{$IMPLICITBUILD OFF}
|
|
|
|
requires
|
|
rtl,
|
|
vcl,
|
|
GUISDK_D10,
|
|
ccpack10,
|
|
designide,
|
|
xmlrtl,
|
|
vclactnband,
|
|
vclx,
|
|
cfpack_d10,
|
|
JvAppFrmD10R,
|
|
vcljpg,
|
|
JclVcl,
|
|
Jcl,
|
|
JvSystemD10R,
|
|
JvCoreD10R,
|
|
cxLibraryD10,
|
|
dxThemeD10;
|
|
|
|
contains
|
|
uClassRegistryUtils in 'uClassRegistryUtils.pas',
|
|
uEditorRegistryUtils in 'uEditorRegistryUtils.pas',
|
|
uViewRegistryUtils in 'uViewRegistryUtils.pas';
|
|
|
|
end.
|