File: XLosSegReq.cpp

package info (click to toggle)
cigi-ccl 3.3.3a%2Bsvn818-10
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 7,332 kB
  • sloc: cpp: 62,566; makefile: 541; ruby: 400; ansic: 313; sh: 68
file content (49 lines) | stat: -rw-r--r-- 1,536 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// XLosSegReq.cpp: Body of the XLosSegReq class.
//
//////////////////////////////////////////////////////////////////////

#include "XLosSegReq.h"

#include <stdio.h>

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

XLosSegReq::XLosSegReq()
{

}

XLosSegReq::~XLosSegReq()
{

}


void XLosSegReq::OnPacketReceived(CigiBasePacket *Packet)
{
   CigiLosSegReqV3_2 *InPckt = (CigiLosSegReqV3_2 *)Packet;

   printf("===> LosSegReq <===\n");

   printf("LosID ==> %d\n",InPckt->GetLosID());
   printf("ReqType ==> %d\n",InPckt->GetReqType());
   printf("SrcCoordSys ==> %d\n",InPckt->GetSrcCoordSys());
   printf("DstCoordSys ==> %d\n",InPckt->GetDstCoordSys());
   printf("ResponseCoordSys ==> %d\n",InPckt->GetResponseCoordSys());
   printf("DestinationEntityValid ==> %d\n",InPckt->GetDestEntityIDValid());
   printf("AlphaThresh ==> %d\n",InPckt->GetAlphaThresh());
   printf("EntityID ==> %d\n",InPckt->GetEntityID());
   printf("SrcXoff ==> %f\n",InPckt->GetSrcXoff());
   printf("SrcYoff ==> %f\n",InPckt->GetSrcYoff());
   printf("SrcZoff ==> %f\n",InPckt->GetSrcZoff());
   printf("DstXoff ==> %f\n",InPckt->GetDstXoff());
   printf("DstYoff ==> %f\n",InPckt->GetDstYoff());
   printf("DstZoff ==> %f\n",InPckt->GetDstZoff());
   printf("Mask ==> %d\n",InPckt->GetMask());
   printf("UpdatePeriod ==> %d\n",InPckt->GetUpdatePeriod());
   printf("DestinationEntityID ==> %d\n",InPckt->GetDestEntityID());


}