00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _C_GETEXTERNALDATAACTIONTOMEM_H
00021 #define _C_GETEXTERNALDATAACTIONTOMEM_H
00022
00023 #include "C_GetExternalDataAction.hpp"
00024
00025 class C_GetExternalDataActionToMem : public C_GetExternalDataAction {
00026
00027
00028 public:
00029
00030 C_GetExternalDataActionToMem (T_CmdAction P_cmdAction,
00031 T_pControllers P_controllers);
00032
00033 ~C_GetExternalDataActionToMem() ;
00034
00035 T_exeCode execute (T_pCmd_scenario P_pCmd,
00036 T_pCallContext P_callCtxt,
00037 C_MessageFrame *P_msg,
00038 C_MessageFrame *P_ref) ;
00039
00040 } ;
00041
00042 typedef C_GetExternalDataActionToMem *T_pC_GetExternalDataActionToMem ;
00043
00044
00045 #endif // _C_GETEXTERNALDATAACTIONTOMEM_H
00046
00047
00048
00049