- Repaso a los nombres de los paquetes (p.e. BaseD10 -> Base). git-svn-id: https://192.168.0.254/svn/Proyectos.Varela_PuntosVenta/trunk@112 1c943782-d109-9647-9548-93b3ac332352
117 lines
3.0 KiB
ObjectPascal
117 lines
3.0 KiB
ObjectPascal
package Base;
|
|
|
|
{$R *.res}
|
|
{$ALIGN 8}
|
|
{$ASSERTIONS ON}
|
|
{$BOOLEVAL OFF}
|
|
{$DEBUGINFO ON}
|
|
{$EXTENDEDSYNTAX ON}
|
|
{$IMPORTEDDATA ON}
|
|
{$IOCHECKS ON}
|
|
{$LOCALSYMBOLS ON}
|
|
{$LONGSTRINGS ON}
|
|
{$OPENSTRINGS ON}
|
|
{$OPTIMIZATION OFF}
|
|
{$OVERFLOWCHECKS OFF}
|
|
{$RANGECHECKS OFF}
|
|
{$REFERENCEINFO ON}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES ON}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $400000}
|
|
{$RUNONLY}
|
|
{$IMPLICITBUILD OFF}
|
|
{$DEFINE DEBUG}
|
|
|
|
requires
|
|
rtl,
|
|
vcl,
|
|
vcldb,
|
|
GUISDK_D11,
|
|
vcljpg,
|
|
dbrtl,
|
|
dsnap,
|
|
PNG_D10,
|
|
PngComponentsD10,
|
|
JvCoreD11R,
|
|
JvStdCtrlsD11R,
|
|
JvPageCompsD11R,
|
|
cxLibraryD10,
|
|
dxThemeD10,
|
|
cxEditorsD10,
|
|
cxDataD10,
|
|
cxExtEditorsD10,
|
|
cxGridD10,
|
|
cxPageControlD10,
|
|
tb2k_D10,
|
|
tbx_D10,
|
|
vclx,
|
|
vclactnband,
|
|
designide,
|
|
cxExportD10,
|
|
adortl,
|
|
JvSystemD11R,
|
|
dxPSCoreD10,
|
|
dxPScxCommonD10,
|
|
dxPScxGridLnkD10,
|
|
cxIntlPrintSys3D10,
|
|
dxBarD10,
|
|
dxBarExtItemsD10,
|
|
cxIntl5D10,
|
|
dxPsPrVwAdvD10,
|
|
JvMMD11R,
|
|
JvCtrlsD11R,
|
|
tee,
|
|
frx10,
|
|
fs10,
|
|
frxe10,
|
|
dxLayoutControlD10,
|
|
dxComnD10,
|
|
Jcl,
|
|
JclVcl,
|
|
JvAppFrmD11R,
|
|
dxPSLnksD10,
|
|
vclshlctrls,
|
|
dclcxLibraryD10,
|
|
RemObjects_Core_D11,
|
|
DataAbstract_Core_D11,
|
|
JSDialog100;
|
|
|
|
contains
|
|
uDMBase in 'uDMBase.pas' {dmBase: TDAClientDataModule},
|
|
uEditorBase in 'uEditorBase.pas' {fEditorBase},
|
|
uEditorGridBase in 'uEditorGridBase.pas' {fEditorGridBase},
|
|
uEditorItem in 'uEditorItem.pas' {fEditorItem},
|
|
uEditorPreview in 'uEditorPreview.pas' {fEditorPreview},
|
|
uViewPreview in 'uViewPreview.pas' {frViewPreview: TFrame},
|
|
uViewBase in 'uViewBase.pas' {frViewBase: TCustomView},
|
|
uViewGridBase in 'uViewGridBase.pas' {frViewGridBase: TCustomView},
|
|
uEditorDBBase in 'uEditorDBBase.pas' {fEditorDBBase: TCustomEditor},
|
|
uEditorDBItem in 'uEditorDBItem.pas' {fEditorDBItem: TCustomEditor},
|
|
uExceptions in 'uExceptions.pas',
|
|
uViewBarraSeleccion in 'uViewBarraSeleccion.pas' {frViewBarraSeleccion: TFrame},
|
|
uConfigurarConexion in 'uConfigurarConexion.pas' {fConfigurarConexion},
|
|
uBizInformesBase in 'uBizInformesBase.pas',
|
|
uViewGrid in 'uViewGrid.pas' {frViewGrid: TCustomView},
|
|
VARELA_Intf in '..\Servicios\VARELA_Intf.pas',
|
|
uControllerBase in 'Controladores\uControllerBase.pas',
|
|
uDataModuleBase in 'uDataModuleBase.pas' {fDataModuleBase: TDataModuleBase},
|
|
uSysFunc in 'Utiles\uSysFunc.pas',
|
|
uDataTableUtils in 'Utiles\uDataTableUtils.pas',
|
|
uDBSelectionList in 'Utiles\uDBSelectionList.pas',
|
|
uDialogUtils in 'Utiles\uDialogUtils.pas',
|
|
uEditorUtils in 'Utiles\uEditorUtils.pas',
|
|
uGridUtils in 'Utiles\uGridUtils.pas',
|
|
uIntegerList in 'Utiles\uIntegerList.pas',
|
|
uViewRegistryUtils in 'ClassRegistry\uViewRegistryUtils.pas',
|
|
uClassRegistryUtils in 'ClassRegistry\uClassRegistryUtils.pas',
|
|
uEditorRegistryUtils in 'ClassRegistry\uEditorRegistryUtils.pas',
|
|
uInformeRegistryUtils in 'ClassRegistry\uInformeRegistryUtils.pas',
|
|
uAppInfoUtils in 'Utiles\uAppInfoUtils.pas',
|
|
uDateUtils in 'Utiles\uDateUtils.pas';
|
|
|
|
end.
|