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