mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
74 lines
1.6 KiB
C#
Executable file
74 lines
1.6 KiB
C#
Executable file
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
/*
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
* This program is released under GNU General Public License
|
|
*
|
|
* 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. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#endregion
|
|
|
|
#region ================== Namespaces
|
|
|
|
using System;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.IO
|
|
{
|
|
public sealed class UniversalEntry
|
|
{
|
|
#region ================== Constants
|
|
|
|
#endregion
|
|
|
|
#region ================== Variables
|
|
|
|
private string key;
|
|
private object value;
|
|
|
|
#endregion
|
|
|
|
#region ================== Properties
|
|
|
|
public string Key { get { return key; } }
|
|
public object Value { get { return value; } }
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
// Constructor
|
|
public UniversalEntry(string key, object value)
|
|
{
|
|
// Initialize
|
|
this.key = key;
|
|
this.value = value;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Methods
|
|
|
|
// This checks if the value is of the given type
|
|
// Will throw and exception when it is not
|
|
public void ValidateType(Type t)
|
|
{
|
|
if(value.GetType() != t) throw new Exception("The value of entry \"" + key + "\" is of incompatible type (expected " + t.Name + ")");
|
|
}
|
|
|
|
//mxd
|
|
public bool IsValidType(Type t)
|
|
{
|
|
return value.GetType() == t;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|