SeaBreeze
StrayLightCoeffsProtocolInterface.h
Go to the documentation of this file.
1 /***************************************************/
40 #ifndef STRAYLIGHTCOEFFSPROTOCOLINTERFACE_H
41 #define STRAYLIGHTCOEFFSPROTOCOLINTERFACE_H
42 
43 #include "common/SeaBreeze.h"
44 #include "common/buses/Bus.h"
47 #include <vector>
48 
49 namespace seabreeze {
50 
52  public:
55  virtual std::vector<double> *readStrayLightCoeffs(const Bus &bus)
56  throw (ProtocolException) = 0;
57  };
58 
59 }
60 
61 #endif /* STRAYLIGHTCOEFFSPROTOCOLINTERFACE_H */
Definition: Protocol.h:44
Definition: ProtocolException.h:44
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: ProtocolHelper.h:46
Definition: StrayLightCoeffsProtocolInterface.h:51