CARMA C++
CorrMonUpdater.h
1 #ifndef CARMA_CORRELATOR_TRANSPORT_CORRMONUPDATER_H
2 #define CARMA_CORRELATOR_TRANSPORT_CORRMONUPDATER_H
3 
4 #include <string>
5 
6 namespace carma {
7 namespace correlator {
8 
9 
10 namespace lib {
11 
12 class CorrelatorConfigChecker;
13 
14 } // namespace carma::correlator::lib
15 
16 
17 namespace obsRecord2 {
18 
19 } // namespace carma::correlator::obsRecord2
20 
21 
22 namespace transport {
23 
24 
25 class CorrMonUpdater {
26  public:
27  void runUpdateLoop( const int bandNo,
28  lib::CorrelatorConfigChecker & ccc,
29  const unsigned short controlPort,
30  const ::std::string & controlHost,
31  const int portOffset,
32  const ::std::string & hwStr );
33 };
34 
35 
36 } // namespace carma::correlator::transport
37 } // namespace carma::correlator
38 } // namespace carma
39 
40 #endif