Chart now solid
This commit is contained in:
@@ -32,13 +32,11 @@ type
|
||||
|
||||
IMycProcessor<T> = interface
|
||||
function ProcessData(const Value: T): Boolean;
|
||||
procedure Update;
|
||||
end;
|
||||
|
||||
TMycProcessor<T> = class abstract(TInterfacedObject, IMycProcessor<T>)
|
||||
protected
|
||||
function ProcessData(const Value: T): Boolean; virtual; abstract;
|
||||
procedure Update; virtual;
|
||||
end;
|
||||
|
||||
TTag = Pointer;
|
||||
@@ -79,7 +77,6 @@ type
|
||||
private
|
||||
FProc: TProc;
|
||||
function ProcessData(const Value: T): Boolean;
|
||||
procedure Update;
|
||||
public
|
||||
constructor Create(const Controller: IInterface; const AProc: TProc);
|
||||
end;
|
||||
@@ -467,11 +464,6 @@ begin
|
||||
Result := FProc(Value);
|
||||
end;
|
||||
|
||||
procedure TMycContainedProcessor<T>.Update;
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
{ TMycDataProvider<S, T> }
|
||||
|
||||
constructor TMycDataProvider<T>.Create(const Controller: IInterface);
|
||||
@@ -516,9 +508,4 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TMycProcessor<T>.Update;
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
Reference in New Issue
Block a user