mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 04:15:00 +00:00
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Core.Routing
|
|
{
|
|
/// <summary>
|
|
/// Represents a DummyRoutingInputsDevice
|
|
/// </summary>
|
|
public class DummyRoutingInputsDevice : Device, IRoutingSource, IRoutingOutputs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the AudioVideoOutputPort
|
|
/// </summary>
|
|
public RoutingOutputPort AudioVideoOutputPort { get; private set; }
|
|
|
|
/// <summary>
|
|
/// contains the output port
|
|
/// </summary>
|
|
public RoutingPortCollection<RoutingOutputPort> OutputPorts
|
|
{
|
|
get { return new RoutingPortCollection<RoutingOutputPort>() { AudioVideoOutputPort }; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// constructor
|
|
/// </summary>
|
|
/// <param name="key">key for special device</param>
|
|
public DummyRoutingInputsDevice(string key) : base(key)
|
|
{
|
|
AudioVideoOutputPort = new RoutingOutputPort("internal", eRoutingSignalType.Audio | eRoutingSignalType.Video, eRoutingPortConnectionType.BackplaneOnly,
|
|
null, this, true);
|
|
}
|
|
}
|
|
} |