File: XShortArtPartCtrl.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 (41 lines) | stat: -rw-r--r-- 1,125 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
// XShortArtPartCtrl.cpp: Body of the XShortArtPartCtrl class.
//
//////////////////////////////////////////////////////////////////////

#include "XShortArtPartCtrl.h"

#include <stdio.h>

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

XShortArtPartCtrl::XShortArtPartCtrl()
{

}

XShortArtPartCtrl::~XShortArtPartCtrl()
{

}


void XShortArtPartCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
   CigiShortArtPartCtrlV3 *InPckt = (CigiShortArtPartCtrlV3 *)Packet;

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

   printf("EntityID ==> %d\n",InPckt->GetEntityID());
   printf("ArtPart1 ==> %d\n",InPckt->GetArtPart1());
   printf("ArtPart2 ==> %d\n",InPckt->GetArtPart2());
   printf("DofSelect1 ==> %d\n",InPckt->GetDofSelect1());
   printf("DofSelect2 ==> %d\n",InPckt->GetDofSelect2());
   printf("ArtPart1En ==> %d\n",InPckt->GetArtPart1En());
   printf("ArtPart2En ==> %d\n",InPckt->GetArtPart2En());
   printf("Dof1 ==> %f\n",InPckt->GetDof1());
   printf("Dof2 ==> %f\n",InPckt->GetDof2());


}