Updated class names to not use VC abbreviation. Defined additional interfaces

This commit is contained in:
Neil Dorin
2017-09-06 08:52:53 -06:00
parent 617e2bdc4f
commit 0d071e6e82
4 changed files with 21 additions and 10 deletions

View File

@@ -6,9 +6,9 @@ using Crestron.SimplSharp;
using Cisco_One_Button_To_Push;
using Cisco_SX80_Corporate_Phone_Book;
namespace PepperDash.Essentials.Devices.VC
namespace PepperDash.Essentials.Devices.VideoCodec
{
public class CiscoCodec : VcCodecBase
public class CiscoCodec : VideoCodecBase
{
private CiscoOneButtonToPush Codec;
@@ -23,13 +23,9 @@ namespace PepperDash.Essentials.Devices.VC
Codec.Initialize();
Codec.GetMeetings();
Codec.GetMeetings();
}
public override void ExecuteSwitch(object selector)
{
throw new NotImplementedException();

View File

@@ -7,9 +7,9 @@ using Crestron.SimplSharp;
using PepperDash.Core;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Devices.VC
namespace PepperDash.Essentials.Devices.VideoCodec
{
public abstract class VcCodecBase : Device, IHasFeedback, IRoutingSinkWithSwitching, IUsageTracking, IHasDialer//, ICodecAudio
public abstract class VideoCodecBase : Device, IRoutingSinkWithSwitching, IUsageTracking, IHasDialer //, ICodecAudio
{
#region IUsageTracking Members
@@ -30,7 +30,7 @@ namespace PepperDash.Essentials.Devices.VC
abstract protected Func<bool> ReceiveMuteFeedbackFunc { get; }
abstract protected Func<bool> PrivacyModeFeedbackFunc { get; }
public VcCodecBase(string key, string name)
public VideoCodecBase(string key, string name)
: base(key, name)
{
InCallFeedback = new BoolFeedback(InCallFeedbackFunc);