![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00007 #ifndef DtCommentDecoder_H_ 00008 #define DtCommentDecoder_H_ 00009 00010 #if DtHLA 00011 00012 #include "interDecoder.h" 00013 00017 00018 class DT_DLL_VL DtCommentInteraction; 00019 00022 00023 #define DtDECLARE_COMMENT_PARAM_DECODER(paramName) \ 00024 DtDECLARE_PARAM_DECODER(DtCommentInteraction, paramName) 00025 00026 #define DtDEFINE_SIMPLE_COMMENT_PARAM_DECODER( \ 00027 paramName, netType, mutator) \ 00028 DtDEFINE_SIMPLE_PARAM_DECODER( \ 00029 DtCommentDecoder, DtCommentInteraction, \ 00030 paramName, netType, mutator) 00031 00032 00036 class DT_DLL_VL DtCommentDecoder : public DtInteractionDecoder 00037 { 00038 public: 00039 00041 DtCommentDecoder(DtExerciseConn* exConn, 00042 DtInterClassDesc* classDesc); 00043 00045 virtual ~DtCommentDecoder(); 00046 00048 DtCommentDecoder(const DtCommentDecoder& orig); 00049 00051 DtCommentDecoder& operator=(const DtCommentDecoder& orig); 00052 00053 protected: 00054 00056 00057 DtDECLARE_COMMENT_PARAM_DECODER(OriginatingEntity); 00058 DtDECLARE_COMMENT_PARAM_DECODER(ReceivingEntity); 00059 DtDECLARE_COMMENT_PARAM_DECODER(VariableDatumSet); 00060 00061 static void decodeVariableDatumSet_2_d_14( 00062 DtCommentInteraction* inter, 00063 const RTI::ParameterHandleValuePairSet& params, 00064 int index); 00065 }; 00066 00067 #endif 00068 #endif 00069