#ifndef TriggerCommandsGUI_CheckCallIsEnded_h #define TriggerCommandsGUI_CheckCallIsEnded_h #include #include #include #include "Processors/TriggerCommandsImpl.h" namespace UpperTestAdapter { namespace Processors { namespace TriggerCommandsGUI { /*! Class CheckCallIsEnded * \brief This class provides processing for UE_CHECK_CALL_IS_ENDED Trigger command. */ class CheckCallIsEnded : public UpperTestAdapter::Processors::TriggerCommandsImpl { static std::string CheckCallIsEndedId; boost::shared_ptr m_successor; boost::shared_ptr m_eutIface; public: CheckCallIsEnded(); CheckCallIsEnded(boost::shared_ptr eutIface); ~CheckCallIsEnded(); public: // Public interface. int Process(const std::string &trigger, const std::vector ¶meterList); void SetSuccessor(boost::shared_ptr successor); }; } } } // namespaces #endif // TriggerCommandsGUI_CheckCallIsEnded_h