|
| 1 | +package Spring.Base; |
| 2 | + |
| 3 | +{$R *.res} |
| 4 | +{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} |
| 5 | +{$ALIGN 8} |
| 6 | +{$ASSERTIONS ON} |
| 7 | +{$BOOLEVAL OFF} |
| 8 | +{$DEBUGINFO ON} |
| 9 | +{$EXTENDEDSYNTAX ON} |
| 10 | +{$IMPORTEDDATA ON} |
| 11 | +{$IOCHECKS ON} |
| 12 | +{$LOCALSYMBOLS ON} |
| 13 | +{$LONGSTRINGS ON} |
| 14 | +{$OPENSTRINGS ON} |
| 15 | +{$OPTIMIZATION OFF} |
| 16 | +{$OVERFLOWCHECKS OFF} |
| 17 | +{$RANGECHECKS OFF} |
| 18 | +{$REFERENCEINFO ON} |
| 19 | +{$SAFEDIVIDE OFF} |
| 20 | +{$STACKFRAMES ON} |
| 21 | +{$TYPEDADDRESS OFF} |
| 22 | +{$VARSTRINGCHECKS ON} |
| 23 | +{$WRITEABLECONST OFF} |
| 24 | +{$MINENUMSIZE 1} |
| 25 | +{$IMAGEBASE $400000} |
| 26 | +{$DEFINE DEBUG} |
| 27 | +{$ENDIF IMPLICITBUILDING} |
| 28 | +{$DESCRIPTION 'Spring4D Base package'} |
| 29 | +{$LIBSUFFIX '.Delphi10Seattle'} |
| 30 | +{$RUNONLY} |
| 31 | +{$IMPLICITBUILD OFF} |
| 32 | + |
| 33 | +{$I Spring.inc} |
| 34 | + |
| 35 | +requires |
| 36 | +{$IFDEF FMX} |
| 37 | + fmx, |
| 38 | +{$ENDIF} |
| 39 | + rtl; |
| 40 | + |
| 41 | +contains |
| 42 | + Spring in '..\..\Source\Base\Spring.pas', |
| 43 | + Spring.Collections in '..\..\Source\Base\Collections\Spring.Collections.pas', |
| 44 | + Spring.Collections.Adapters in '..\..\Source\Base\Collections\Spring.Collections.Adapters.pas', |
| 45 | + Spring.Collections.Base in '..\..\Source\Base\Collections\Spring.Collections.Base.pas', |
| 46 | + Spring.Collections.Dictionaries in '..\..\Source\Base\Collections\Spring.Collections.Dictionaries.pas', |
| 47 | + Spring.Collections.Events in '..\..\Source\Base\Collections\Spring.Collections.Events.pas', |
| 48 | + Spring.Collections.Extensions in '..\..\Source\Base\Collections\Spring.Collections.Extensions.pas', |
| 49 | + Spring.Collections.Lists in '..\..\Source\Base\Collections\Spring.Collections.Lists.pas', |
| 50 | + Spring.Collections.LinkedLists in '..\..\Source\Base\Collections\Spring.Collections.LinkedLists.pas', |
| 51 | + Spring.Collections.MultiMaps in '..\..\Source\Base\Collections\Spring.Collections.MultiMaps.pas', |
| 52 | + Spring.Collections.Queues in '..\..\Source\Base\Collections\Spring.Collections.Queues.pas', |
| 53 | + Spring.Collections.Sets in '..\..\Source\Base\Collections\Spring.Collections.Sets.pas', |
| 54 | + Spring.Collections.Stacks in '..\..\Source\Base\Collections\Spring.Collections.Stacks.pas', |
| 55 | + Spring.DesignPatterns in '..\..\Source\Base\Spring.DesignPatterns.pas', |
| 56 | + Spring.Events in '..\..\Source\Base\Spring.Events.pas', |
| 57 | + Spring.Events.Base in '..\..\Source\Base\Spring.Events.Base.pas', |
| 58 | + Spring.Helpers in '..\..\Source\Base\Spring.Helpers.pas', |
| 59 | + Spring.Logging in '..\..\Source\Base\Logging\Spring.Logging.pas', |
| 60 | + Spring.Logging.Appenders in '..\..\Source\Base\Logging\Spring.Logging.Appenders.pas', |
| 61 | + Spring.Logging.Appenders.Base in '..\..\Source\Base\Logging\Spring.Logging.Appenders.Base.pas', |
| 62 | + Spring.Logging.Controller in '..\..\Source\Base\Logging\Spring.Logging.Controller.pas', |
| 63 | + Spring.Logging.Extensions in '..\..\Source\Base\Logging\Spring.Logging.Extensions.pas', |
| 64 | + Spring.Logging.Loggers in '..\..\Source\Base\Logging\Spring.Logging.Loggers.pas', |
| 65 | + Spring.Logging.NullLogger in '..\..\Source\Base\Logging\Spring.Logging.NullLogger.pas', |
| 66 | + Spring.Logging.ResourceStrings in '..\..\Source\Base\Logging\Spring.Logging.ResourceStrings.pas', |
| 67 | + Spring.Logging.Serializers in '..\..\Source\Base\Logging\Spring.Logging.Serializers.pas', |
| 68 | + Spring.MethodIntercept in '..\..\Source\Base\Spring.MethodIntercept.pas', |
| 69 | + Spring.Reflection in '..\..\Source\Base\Reflection\Spring.Reflection.pas', |
| 70 | + Spring.ResourceStrings in '..\..\Source\Base\Spring.ResourceStrings.pas', |
| 71 | + Spring.SystemUtils in '..\..\Source\Base\Spring.SystemUtils.pas', |
| 72 | + Spring.Times in '..\..\Source\Base\Spring.Times.pas', |
| 73 | + Spring.ValueConverters in '..\..\Source\Base\Spring.ValueConverters.pas', |
| 74 | + Spring.VirtualClass in '..\..\Source\Base\Spring.VirtualClass.pas', |
| 75 | + Spring.VirtualInterface in '..\..\Source\Base\Spring.VirtualInterface.pas'; |
| 76 | + |
| 77 | +end. |
0 commit comments