File: XEventNotificationV3.cpp

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 (38 lines) | stat: -rw-r--r-- 934 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
// XEventNotificationV3.cpp: Body of the XEventNotificationV3 class.
//
//////////////////////////////////////////////////////////////////////

#include "XEventNotificationV3.h"
#include <CigiEventNotificationV3.h>

#include <stdio.h>

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

XEventNotificationV3::XEventNotificationV3()
{

}

XEventNotificationV3::~XEventNotificationV3()
{

}


void XEventNotificationV3::OnPacketReceived(CigiBasePacket *Packet)
{
   CigiEventNotificationV3 *InPckt = (CigiEventNotificationV3 *)Packet;


   printf("Event Notification V3:\n");
   printf("\tEventID = %u\n",InPckt->GetEventID());
   printf("\tEventData 1 = %u\n",InPckt->GetULEventData(0));
   printf("\tEventData 2 = %u\n",InPckt->GetULEventData(1));
   printf("\tEventData 3 = %u\n",InPckt->GetULEventData(2));

}