File: Proc_SensorRespV2.h

package info (click to toggle)
cigi-ccl 3.3.3a%2Bsvn818-7
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,332 kB
  • ctags: 7,175
  • sloc: cpp: 62,566; makefile: 541; ruby: 400; ansic: 313; sh: 68
file content (27 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Proc_SensorRespV2.h: Interface for the Proc_SensorRespV2 parsing
//   Processor class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(PROC_SENSORRESPV2_PARSING_PROCESSOR_INCLUDED_)
#define PROC_SENSORRESPV2_PARSING_PROCESSOR_INCLUDED_

#include "PcktParsingProcessor.h"
#include "CigiSensorRespV2.h"

class Proc_SensorRespV2 : public PcktParsingProcessor
{
public:
   Proc_SensorRespV2();
   virtual ~Proc_SensorRespV2();

   virtual void ProcPckt(ParseValue *pPV);

protected:
   CigiSensorRespV2 Om_SensorRespV2;

};

#endif   //  PROC_SENSORRESPV2_PARSING_PROCESSOR_INCLUDED_