source: ntrip/trunk/GnssCenter/thrift/rtnet_sdo_example/RtnetDataHandler.h@ 4941

Last change on this file since 4941 was 4941, checked in by mervart, 11 years ago
File size: 1.2 KB
Line 
1#ifndef RTNET_SDO_EXAMPLE_RTNETDATAHANDLER_H
2#define RTNET_SDO_EXAMPLE_RTNETDATAHANDLER_H
3
4#include "common/thrift/RtnetData.h"
5
6class RtnetDataHandler : public com::gpssolutions::rtnet::RtnetDataIf
7{
8public:
9 RtnetDataHandler();
10 ~RtnetDataHandler();
11 void startDataStream();
12 void registerRtnet(const ::com::gpssolutions::rtnet::RtnetInformation& info);
13 void handleZDAmb(const std::vector< ::com::gpssolutions::rtnet::ZDAmb> & ambList);
14 void handleDDAmbresBaselines(const std::vector< ::com::gpssolutions::rtnet::DDAmbresBaseline>& ambList);
15 void handleSatelliteXYZ(const std::vector< ::com::gpssolutions::rtnet::SatelliteXYZ>& svXYZList);
16 void handleStationInfo(const std::vector< ::com::gpssolutions::rtnet::StationInfo> & stationList);
17 void handleStationAuxInfo(const std::vector< ::com::gpssolutions::rtnet::StationAuxInfo> & stationAuxList);
18 void handleDGPSCorr(const std::vector< ::com::gpssolutions::rtnet::DGPSCorr> & dgpsList);
19 void handleSatelliteClock(const std::vector< ::com::gpssolutions::rtnet::SatelliteClock> & svList);
20 void handleEpochResults(const ::com::gpssolutions::rtnet::RtnetEpoch& epoch);
21};
22
23#endif // RTNET_SDO_EXAMPLE_RTNETDATAHANDLER_H
Note: See TracBrowser for help on using the repository browser.