[JEDI.NET-commits] main/run Jedi.IO.IniFiles.pas,NONE,1.1 Jedi.System.IniFiles.pas,1.1,NONE
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-01-22 17:59:24
|
Update of /cvsroot/jedidotnet/main/run In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25290/main/run Added Files: Jedi.IO.IniFiles.pas Removed Files: Jedi.System.IniFiles.pas Log Message: * Renamed Jedi.System.IniFiles to Jedi.IO.IniFiles * Added Jedi.IO.IniFIles to Jedi.IO package * Renamed classes from *ConfigFile* to *IniFile* * renamed classes from InMemory* to Memory* --- Jedi.System.IniFiles.pas DELETED --- --- NEW FILE: Jedi.IO.IniFiles.pas --- {--------------------------------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/MPL-1.1.html Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is: Jedi.System.IniFiles.pas, released on 2004-12-24. The Initial Developer of the Original Code is Marcel Bestebroer Portions created by Marcel Bestebroer are Copyright (C) 2004 Marcel Bestebroer All Rights Reserved. Contributor(s): You may retrieve the latest version of this file at the JEDI.NET home page, located at http://sf.net/projects/jedidotnet [...2023 lines suppressed...] SaveImpl(Writer, True, #0); end; procedure MemoryIniFile.Save(writer: TextWriter; commentChar: Char); begin SaveImpl(Writer, True, commentChar); end; procedure MemoryIniFile.Save(writer: TextWriter; emptyLineBetweenSections: Boolean); begin SaveImpl(writer, emptyLineBetweenSections, #0); end; procedure MemoryIniFile.Save(writer: TextWriter; commentChar: Char; emptyLineBetweenSections: Boolean); begin SaveImpl(writer, emptyLineBetweenSections, commentChar); end; {$ENDREGION} end. |