SeaBreeze
StrobeLampProtocolInterface.h
Go to the documentation of this file.
1 /***************************************************/
35 #ifndef STROBELAMPPROTOCOLINTERFACE_H
36 #define STROBELAMPPROTOCOLINTERFACE_H
37 
38 #include "common/buses/Bus.h"
41 
42 namespace seabreeze {
43 
45  public:
47  virtual ~StrobeLampProtocolInterface();
48  virtual void setStrobeLampEnable(const Bus &bus, bool enable)
49  throw (ProtocolException) = 0;
50  };
51 
52 }
53 
54 #endif /* LAMPPROTOCOLINTERFACE_H */
Definition: Protocol.h:44
Definition: ProtocolException.h:44
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: ProtocolHelper.h:46
Definition: StrobeLampProtocolInterface.h:44