// %pacpus:license{ // This file is part of the PACPUS framework distributed under the // CECILL-C License, Version 1.0. // %pacpus:license} /// @file /// @author Elie Al Alam /// @author Gerald Dherbomez /// @date April, 2007 /// @version $Id: DbtPlyTrigger.h 76 2013-01-10 17:05:10Z kurdejma $ /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved. /// @brief DbitePlayer trigger. /// /// Detailed description. #ifndef DEF_PACPUS_DBTPLYTRIGGER_H #define DEF_PACPUS_DBTPLYTRIGGER_H #include #include #include #include #include #ifdef WIN32 # include # include #endif namespace pacpus { class DbtPlyEngine; class DBITE_PLAYER_API DbtPlyTrigger : public QThread , public ComponentBase { Q_OBJECT public: /// @todo Documentation DbtPlyTrigger(QString name); /// @todo Documentation virtual ~DbtPlyTrigger(); /// @todo Documentation virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config); /// @todo Documentation virtual void run(); Q_SIGNALS: /// @todo Documentation void triggerSig(); protected: /// @todo Documentation virtual void startActivity(); /// @todo Documentation virtual void stopActivity(); private: DbtPlyEngine * mEngine; }; } // namespace pacpus #endif // DEF_PACPUS_DBTPLYTRIGGER_H