mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 20:04:56 +00:00
42 lines
1011 B
C#
42 lines
1011 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices
|
|
{
|
|
///// <summary>
|
|
///// This DVD class should cover most IR, one-way DVD and Bluray fuctions
|
|
///// </summary>
|
|
//public class OppoBluray : IrDvdBase, IDvdControls, IExtendedOutputs
|
|
//{
|
|
// public OppoBluray(string key, string name, IROutputPort port, string irDriverFilepath) : base(key, name, port, irDriverFilepath) { }
|
|
|
|
|
|
|
|
// public OutputsToTriListBridge GetExtendedOutputsToTriListBridge()
|
|
// {
|
|
// return new ExtendedDvdTriListBridge();
|
|
// }
|
|
|
|
|
|
//}
|
|
|
|
//public class ExtendedDvdTriListBridge : OutputsToTriListBridge
|
|
//{
|
|
|
|
// public override void Link()
|
|
// {
|
|
// throw new NotImplementedException();
|
|
// }
|
|
|
|
// public override void UnLink()
|
|
// {
|
|
// throw new NotImplementedException();
|
|
// }
|
|
//}
|
|
} |