mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
chore: move all files to file-scoped namespace
This commit is contained in:
parent
aaa5b0532b
commit
3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions
|
|
@ -1,32 +1,22 @@
|
|||
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
|
||||
|
||||
namespace PepperDash.Essentials.Core;
|
||||
/// <summary>
|
||||
/// Abstract base class for TriList handler bridges
|
||||
/// </summary>
|
||||
public abstract class HandlerBridge
|
||||
{
|
||||
/// <summary>
|
||||
/// Abstract base class for TriList handler bridges
|
||||
/// Gets or sets the IsAttached
|
||||
/// </summary>
|
||||
public abstract class HandlerBridge
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the IsAttached
|
||||
/// </summary>
|
||||
public bool IsAttached { get; protected set; }
|
||||
public bool IsAttached { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// Attaches the handler to the panel's user objects
|
||||
/// </summary>
|
||||
public abstract void AttachToTriListOutputs(bool sendUpdate);
|
||||
/// <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();
|
||||
}
|
||||
/// <summary>
|
||||
/// Removes the handler from the panel's user objects
|
||||
/// </summary>
|
||||
public abstract void DetachFromTriListOutputs();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue