view NonExistantIniSection.cs @ 0:fbde5e1920ba

Re #6 (Ini parsing library) - Initial commit of IBBoard Ini parsing
author IBBoard <dev@ibboard.co.uk>
date Thu, 08 Jan 2009 20:33:56 +0000
parents
children 2dde4c1d19d9
line wrap: on
line source

// This file (NonExistantIniSection.cs) is a part of [SOME APPLICATION] and is copyright 2009 IBBoard.
//
// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.

using System;

namespace IBBoard.Ini
{
	public class NonExistantIniSection : IniSection
	{		
		public NonExistantIniSection() : base("")
		{
		}
	}
}