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