SeaBreeze
WaveCalProtocolInterface.h
Go to the documentation of this file.
1 /***************************************************/
40 #ifndef WAVECALPROTOCOLINTERFACE_H
41 #define WAVECALPROTOCOLINTERFACE_H
42 
43 #include "common/SeaBreeze.h"
44 #include "common/buses/Bus.h"
47 #include <vector>
48 
49 namespace seabreeze {
50 
52  public:
54  virtual ~WaveCalProtocolInterface();
55  virtual std::vector<double> *readWavelengthCoeffs(const Bus &bus)
56  throw (ProtocolException) = 0;
57  };
58 
59 }
60 
61 #endif /* WAVECALPROTOCOLINTERFACE_H */
62 
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: WaveCalProtocolInterface.h:51