diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NonExistantIniSection.cs	Thu Jan 08 20:33:56 2009 +0000
@@ -0,0 +1,15 @@
+// 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("")
+		{
+		}
+	}
+}