SeaBreeze
StrobeLampFeatureInterface.h
Go to the documentation of this file.
1 /***************************************************/
30 #ifndef STROBELAMPFEATUREINTERFACE_H
31 #define STROBELAMPFEATUREINTERFACE_H
32 
35 #include "common/buses/Bus.h"
37 
38 namespace seabreeze {
39 
41  public:
42  virtual ~StrobeLampFeatureInterface() = 0;
43  virtual void setStrobeLampEnable(const Protocol &protocol,
44  const Bus &bus, bool enable) throw (FeatureException) = 0;
45  };
46 
47  /* Default implementation for (otherwise) pure virtual destructor */
48  inline StrobeLampFeatureInterface::~StrobeLampFeatureInterface() {}
49 }
50 
51 #endif /* STROBELAMPFEATUREINTERFACE_H */
Definition: Protocol.h:44
Definition: StrobeLampFeatureInterface.h:40
Definition: FeatureException.h:43
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42