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