![]() |
MAK RTIspy API Documentation for HLA 1516
|
00001 /********************************************************************* 00002 ** Copyright (c) 1998 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: netDeleteMsg.h,v $ $Revision: 1.14 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef DtNetDeleteMsg_H_ 00013 #define DtNetDeleteMsg_H_ 00014 00015 #include <vlutil/vlNetTypes.h> 00016 #include "netRtiMsgHdr.h" 00017 #include <vlutil/vlUtil.h> 00018 00019 class DT_DLL_LRC DtNetDeleteMsg 00020 { 00021 public: 00022 int baseSize() const; 00023 00024 DtNetMsgHeader header; 00025 DtNetU32 id; 00026 DtNetU16 hasTime; 00027 DtNetU16 tagSize; 00028 00029 }; 00030 00031 inline int DtNetDeleteMsg::baseSize() const 00032 { 00033 return sizeof(DtNetDeleteMsg) + DtROUND_TO_MULT(tagSize, 4); 00034 } 00035 00036 #endif