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
|
// XTerrestrialSurfaceCtrl.cpp: Body of the XTerrestrialSurfaceCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XTerrestrialSurfaceCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XTerrestrialSurfaceCtrl::XTerrestrialSurfaceCtrl()
{
}
XTerrestrialSurfaceCtrl::~XTerrestrialSurfaceCtrl()
{
}
void XTerrestrialSurfaceCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiTerrestrialSurfaceCtrlV3 *InPckt = (CigiTerrestrialSurfaceCtrlV3 *)Packet;
printf("===> TerrestrialSurfaceCtrl <===\n");
printf("EntityRgnID ==> %d\n",InPckt->GetEntityRgnID());
printf("SurfaceCondID ==> %d\n",InPckt->GetSurfaceCondID());
printf("SurfaceCondEn ==> %d\n",InPckt->GetSurfaceCondEn());
printf("Scope ==> %d\n",InPckt->GetScope());
printf("Severity ==> %d\n",InPckt->GetSeverity());
printf("Coverage ==> %d\n",InPckt->GetCoverage());
}
|