mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 02:14:56 +00:00
26 lines
618 B
C#
26 lines
618 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public abstract class HandlerBridge
|
|
{
|
|
public bool IsAttached { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// Attaches the handler to the panel's user objects
|
|
/// </summary>
|
|
public abstract void AttachToTriListOutputs(bool sendUpdate);
|
|
|
|
/// <summary>
|
|
/// Removes the handler from the panel's user objects
|
|
/// </summary>
|
|
public abstract void DetachFromTriListOutputs();
|
|
}
|
|
} |