|
@@ -1,4 +1,4 @@
|
|
-{ $OPT=-S2 -al -s }
|
|
|
|
|
|
+{ $OPT=-S2 }
|
|
|
|
|
|
{
|
|
{
|
|
$Id$
|
|
$Id$
|
|
@@ -24,14 +24,14 @@ Unit ts010002;
|
|
|
|
|
|
{$M+}
|
|
{$M+}
|
|
|
|
|
|
-Interface
|
|
|
|
|
|
+Interface
|
|
|
|
|
|
Type
|
|
Type
|
|
|
|
|
|
-{ ---------------------------------------------------------------------
|
|
|
|
|
|
+{ ---------------------------------------------------------------------
|
|
Forward Declarations.
|
|
Forward Declarations.
|
|
---------------------------------------------------------------------}
|
|
---------------------------------------------------------------------}
|
|
-
|
|
|
|
|
|
+
|
|
TComponent = Class;
|
|
TComponent = Class;
|
|
TFiler = Class;
|
|
TFiler = Class;
|
|
TPersistent = Class;
|
|
TPersistent = Class;
|
|
@@ -76,14 +76,14 @@ Type
|
|
end;
|
|
end;
|
|
|
|
|
|
{ ---------------------------------------------------------------------
|
|
{ ---------------------------------------------------------------------
|
|
- TComponent
|
|
|
|
|
|
+ TComponent
|
|
---------------------------------------------------------------------}
|
|
---------------------------------------------------------------------}
|
|
|
|
|
|
- TComponentState = Set of ( csLoading, csReading, CsWriting, csDestroying,
|
|
|
|
- csDesigning, csAncestor, csUpdating, csFixups );
|
|
|
|
|
|
+ TComponentState = Set of ( csLoading, csReading, CsWriting, csDestroying,
|
|
|
|
+ csDesigning, csAncestor, csUpdating, csFixups );
|
|
TComponentStyle = set of ( csInheritable,csCheckPropAvail );
|
|
TComponentStyle = set of ( csInheritable,csCheckPropAvail );
|
|
TComponentName = String;
|
|
TComponentName = String;
|
|
-
|
|
|
|
|
|
+
|
|
TComponent = Class (TPersistent)
|
|
TComponent = Class (TPersistent)
|
|
Protected
|
|
Protected
|
|
FComponentState : TComponentState;
|
|
FComponentState : TComponentState;
|
|
@@ -116,7 +116,7 @@ Type
|
|
Implementation
|
|
Implementation
|
|
|
|
|
|
{ ---------------------------------------------------------------------
|
|
{ ---------------------------------------------------------------------
|
|
- TComponent
|
|
|
|
|
|
+ TComponent
|
|
---------------------------------------------------------------------}
|
|
---------------------------------------------------------------------}
|
|
|
|
|
|
Function TComponent.GetComponent (Index : Longint) : TComponent;
|
|
Function TComponent.GetComponent (Index : Longint) : TComponent;
|
|
@@ -208,7 +208,7 @@ end;
|
|
|
|
|
|
|
|
|
|
Procedure TPersistent.Assign (Source : TPersistent);
|
|
Procedure TPersistent.Assign (Source : TPersistent);
|
|
-
|
|
|
|
|
|
+
|
|
begin
|
|
begin
|
|
end;
|
|
end;
|
|
|
|
|