mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 04:03:42 +02:00
39 lines
909 B
ObjectPascal
39 lines
909 B
ObjectPascal
{
|
|
This file was part of the Free Component Library and was adapted to use UTF8
|
|
strings instead of widestrings.
|
|
|
|
Implementation of TXMLConfig class
|
|
Copyright (c) 1999 - 2001 by Sebastian Guenther, sg@freepascal.org
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
{
|
|
TXMLConfig enables applications to use XML files for storing their
|
|
configuration data
|
|
}
|
|
|
|
{$MODE objfpc}
|
|
{$H+}
|
|
|
|
unit Laz_XMLCfg;
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, sysutils, Laz2_XMLCfg;
|
|
|
|
type
|
|
TXMLConfig = Laz2_XMLCfg.TXMLConfig;
|
|
TRttiXMLConfig = Laz2_XMLCfg.TRttiXMLConfig;
|
|
|
|
implementation
|
|
|
|
end.
|