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