![]() |
VR-Link API Documentation for DIS
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00009 00010 #ifndef DtActionResponseFromObjDecoder_H_ 00011 #define DtActionResponseFromObjDecoder_H_ 00012 00013 #if DtHLA 00014 00015 #include "interDecoder.h" 00016 00017 00018 00019 class DT_DLL_VL DtActionResponseFromObjInter; 00020 00023 00024 #define DtDECLARE_ACTRESPOBJ_PARAM_DECODER(paramName) \ 00025 DtDECLARE_PARAM_DECODER(DtActionResponseFromObjInter, paramName) 00026 00027 #define DtDEFINE_SIMPLE_ACTRESPOBJ_PARAM_DECODER( \ 00028 paramName, netType, mutator) \ 00029 DtDEFINE_SIMPLE_PARAM_DECODER( \ 00030 DtActionResponseFromObjDecoder, DtActionResponseFromObjInter, \ 00031 paramName, netType, mutator) 00032 00033 #define DtDEFINE_SIMPLE_ACTRESPOBJ_PARAM_DECODER_WITH_CAST( \ 00034 paramName, netType, mutator, castExpr) \ 00035 DtDEFINE_SIMPLE_PARAM_DECODER_WITH_CAST( \ 00036 DtActionResponseFromObjDecoder, DtActionResponseFromObjInter, \ 00037 paramName, netType, mutator, castExpr) 00038 00039 00043 class DT_DLL_VL DtActionResponseFromObjDecoder : public DtInteractionDecoder 00044 { 00045 public: 00046 00048 DtActionResponseFromObjDecoder(DtExerciseConn* exConn, 00049 DtInterClassDesc* classDesc); 00050 00052 virtual ~DtActionResponseFromObjDecoder(); 00053 00055 DtActionResponseFromObjDecoder(const DtActionResponseFromObjDecoder& orig); 00056 00058 DtActionResponseFromObjDecoder& operator=( 00059 const DtActionResponseFromObjDecoder& orig); 00060 00061 protected: 00062 00064 00065 DtDECLARE_ACTRESPOBJ_PARAM_DECODER(ActionResult); 00066 }; 00067 00068 #endif 00069 #endif 00070