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