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