コード例 #1
0
 public DeviceData(Stream stream)
     : base(stream)
 {
     Target          = new DeviceTargetInfo(stream);
     Version         = new VersionInfo(stream);
     Comment         = new MappingFileComment(stream);
     Ports           = new DevicePorts(stream);
     MidiDefinitions = new MidiDefinitionsContainer(stream);
     Mappings        = new MappingsContainer(stream);
     Unknown         = new DVST(stream);
 }
コード例 #2
0
ファイル: DeviceData.cs プロジェクト: ymmer/Traktor.Mapping
 public DeviceData(Stream stream)
     : base(stream)
 {
     Target = new DeviceTargetInfo(stream);
     Version = new VersionInfo(stream);
     Comment = new MappingFileComment(stream);
     Ports = new DevicePorts(stream);
     MidiDefinitions = new MidiDefinitionsContainer(stream);
     Mappings = new MappingsContainer(stream);
     Unknown = new DVST(stream);
 }