Cosmos/source2/Build/Cosmos.Build.Common/DebugQemuProperties.cs
kudzu_cp c9a6bed675
2010-07-11 18:06:56 +00:00

46 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Build.Common
{
public class DebugQemuProperties : PropertiesBase
{
public TraceAssemblies TraceAssemblies
{
get
{
return GetProperty("TraceAssemblies", TraceAssemblies.User);
}
set
{
SetProperty("TraceAssemblies", value);
}
}
public DebugMode DebugMode
{
get
{
return GetProperty("DebugMode", DebugMode.None);
}
set
{
SetProperty("DebugMode", value);
}
}
public DebugQemuCommunication Communication
{
get { return this.GetProperty("QemuCommunication", DebugQemuCommunication.None); }
set { this.SetProperty("QemuCommunication", value); }
}
public Boolean EnableGDB {
get { return this.GetProperty("EnableGDB", false); }
set { this.SetProperty("EnableGDB", value); }
}
}
}