view MockIniSectionWithOneLine.cs @ 13:48b646dd1dc2 default tip

* Automated clean-up of .csproj file * Ignore generated files
author IBBoard <dev@ibboard.co.uk>
date Wed, 07 Nov 2012 20:23:16 +0000
parents eac501db18e7
children
line wrap: on
line source

//  This file (MockIniSectionWithOneLine.cs) is a part of [PROJECT NAME] and is copyright 2009 IBBoard
// 
//  The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
// 

using System;

namespace IBBoard.Ini
{
	public class MockIniSectionWithOneLine : IniSection
	{		
		public static readonly string SECTION_NAME = "section";
		public static readonly string KEY_NAME = "key";
		public static readonly string VALUE = "value";
		
		public MockIniSectionWithOneLine() : base(SECTION_NAME)
		{
			AddIniLine(new IniKeyValuePairLine(KEY_NAME, VALUE));
		}
	}
}