Cosmos/source2/Build/Cosmos.Build.Common/VMQemuProperties.cs
DanStory_cp 3736486d0b Added PropertiesBase(.cs) class and file.
Added BuildProperties(.cs) class and file.
Added DebugQemuProperties(.cs) class and file.
Added VMQemuProperties(.cs) class and file.
2009-05-29 02:24:55 +00:00

36 lines
876 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Build.Common
{
public class VMQemuProperties : PropertiesBase
{
public VMQemuNetworkCard NetworkCard
{
get { return this.GetProperty("QemuNetworkCard", VMQemuNetworkCard.None); }
set { this.SetProperty("QemuNetworkCard", value); }
}
public Boolean EnableNetworkTAP
{
get { return this.GetProperty("QemuNetworkTAP", false); }
set { this.SetProperty("QemuNetworkTAP", value); }
}
public VMQemuAudioCard AudioCard
{
get { return this.GetProperty("QemuAudioCard", VMQemuAudioCard.None); }
set { this.SetProperty("QemuAudioCard", value); }
}
public Boolean EnableGDB
{
get { return this.GetProperty("QemuEnableGDB", false); }
set { this.SetProperty("QemuEnableGDB", value); }
}
}
}