#region --------------- Copyright Dresser Wayne Pignone -------------
/*
* $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Com/IPricePoleEvents.cs $
*
* 1 07-03-09 15:34 roger.månsson
* Created.
*/
#endregion
using System.Runtime.InteropServices;
namespace Wayne.ForecourtControl.Com
{
///
/// Event interface for an IPricePole class.
///
[ComVisible(true)]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface IPricePoleEvents
{
///
/// Connection state of the Price pole has changed.
///
///
///
void OnConnectionStateChange(IPricePole sender, DeviceConnectionState connectionState);
}
}