Data Types

This commit is contained in:
Michael Schimmel
2025-08-25 14:48:06 +02:00
parent ce653c83b1
commit c9e28a946d
10 changed files with 374 additions and 3 deletions
+6
View File
@@ -23,6 +23,7 @@ type
private
FValue: string;
function GetDataType: IDataType;
function GetAsString: string;
function GetValue: string;
public
constructor Create(const AValue: string);
@@ -65,6 +66,11 @@ begin
Result := TImplDataTextType.Singleton;
end;
function TImplDataTextValue.GetAsString: string;
begin
Result := FValue;
end;
function TImplDataTextValue.GetValue: string;
begin
Result := FValue;