diff options
Diffstat (limited to 'Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/PanelPCApplication/DefaultPanelPCApplicationManager.cs')
| -rw-r--r-- | Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/PanelPCApplication/DefaultPanelPCApplicationManager.cs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/PanelPCApplication/DefaultPanelPCApplicationManager.cs b/Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/PanelPCApplication/DefaultPanelPCApplicationManager.cs deleted file mode 100644 index aa36bb9cd..000000000 --- a/Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/PanelPCApplication/DefaultPanelPCApplicationManager.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.Integration.Operation; - -namespace Tango.PanelPC.UI.PanelPCApplication -{ - public class DefaultPanelPCApplicationManager : IPanelPCApplicationManager - { - public bool IsShuttingDown - { - get - { - throw new NotImplementedException(); - } - } - - public IMachineOperator ConnectedMachine - { - get - { - throw new NotImplementedException(); - } - - set - { - throw new NotImplementedException(); - } - } - - public string Version - { - get - { - throw new NotImplementedException(); - } - } - - public event EventHandler<IMachineOperator> ConnectedMachineChanged; - - public void ShutDown() - { - throw new NotImplementedException(); - } - } -} |
