SeaBreeze
ShutterFeature.h
Go to the documentation of this file.
1 /***************************************************/
30 #ifndef SHUTTERFEATURE_H
31 #define SHUTTERFEATURE_H
32 
33 #include <vector>
34 
38 #include "common/buses/Bus.h"
40 
41 namespace seabreeze {
42 
44  public:
45  ShutterFeature(std::vector<ProtocolHelper *> helpers);
46  virtual ~ShutterFeature();
47  virtual void setShutterOpen(const Protocol &protocol,
48  const Bus &bus, bool opened) throw (FeatureException);
49 
50  /* Overriding from Feature */
51  virtual FeatureFamily getFeatureFamily();
52  };
53 
54 }
55 
56 #endif /* SHUTTERFEATURE_H */
Definition: ShutterFeatureInterface.h:39
Definition: Protocol.h:44
Definition: ShutterFeature.h:43
Definition: FeatureImpl.h:54
Definition: FeatureFamily.h:39
Definition: FeatureException.h:43
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42