1
0
mirror of synced 2024-09-18 17:26:08 +00:00
x2utils/X2UtConfigIni.pas

47 lines
922 B
ObjectPascal
Raw Normal View History

{
:: Implements the IX2ConfigSource for INI files.
::
:: Last changed: $Date$
:: Revision: $Rev$
:: Author: $Author$
}
unit X2UtConfigIni;
interface
uses
X2UtConfig;
type
TX2IniConfigSource = class(TX2StreamConfigSource)
protected
procedure IniSection(Sender: TObject; Section: String);
procedure IniValue(Sender: TObject; Name, Value: String);
public
constructor Create(const AStream: TStream); override;
end;
implementation
uses
X2UtIniParser;
{===================== TX2IniConfigSource
Initialization
========================================}
constructor TX2IniConfigSource.Create(const AStream: TStream);
begin
end;
procedure TX2IniConfigSource.IniSection(Sender: TObject; Section: String);
begin
//
end;
procedure TX2IniConfigSource.IniValue(Sender: TObject; Name, Value: String);
begin
//
end;
end.