GUI Signals

This commit is contained in:
Michael Schimmel
2025-06-24 14:37:38 +02:00
parent 3048c28fe3
commit 35413f5966
5 changed files with 105 additions and 116 deletions
+4 -4
View File
@@ -14,7 +14,7 @@ type
TChunk = TArray<TDataPoint<T>>;
private
FChunks: TArray<TChunk>;
FChunks1: TArray<TChunk>;
FChunks1: TArray<TChunk>;
FCount: Int64;
FMaxLookback: Int64;
FTotalCount: Int64;
@@ -40,8 +40,8 @@ type
// Null object implementation for IDataSeries<T>
TNullDataSeries<T> = class(TInterfacedObject, IDataSeries<T>)
strict private
class var
FNull: IDataSeries<T>;
class var
FNull: IDataSeries<T>;
private
class constructor CreateClass;
public
@@ -173,7 +173,7 @@ end;
function TDataArray<T>.Copy: IDataSeries<T>;
begin
Result := TStaticDataSeries<T>.Create( FChunks, FCount, FMaxLookback, FTotalCount );
Result := TStaticDataSeries<T>.Create(FChunks, FCount, FMaxLookback, FTotalCount);
end;
function TDataArray<T>.GetCount: Int64;