123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.ObjectModel;
- using System.Runtime.InteropServices;
- using Wayne.ForecourtControl.Fusion;
- using Wayne.Lib;
- namespace Wayne.ForecourtControl.Vir.Fusion
- {
-
-
-
- [ComVisible(true)]
- public interface IVirId
- {
- string Id{ get; }
- }
-
-
-
- [ComVisible(true)]
- public interface IVir
- {
-
-
-
- int Id { get; }
- DeviceConnectionState State(string virId);
- ReadOnlyCollection<IVirId> VirIds { get; }
- event EventHandler<VIRStateChangedEventArgs> OnVirIdStateChange;
- }
- }
|