source: pacpusframework/trunk/include/Pacpus/DbitePlayer/DbtPlyTrigger.h@ 66

Last change on this file since 66 was 66, checked in by Marek Kurdej, 11 years ago

Documentation: file info.

  • Property svn:keywords set to Id
File size: 1.5 KB
RevLine 
[62]1// This file is part of the PACPUS framework distributed under the
2// CECILL-C License, Version 1.0.
3//
[66]4/// @file
[62]5/// @author Elie Al Alam <firstname.surname@utc.fr>
6/// @author Gerald Dherbomez <firstname.surname@utc.fr>
7/// @date April, 2007
8/// @version $Id: DbtPlyTrigger.h 66 2013-01-09 16:54:11Z kurdejma $
9/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
10/// @brief DbitePlayer trigger.
11///
12/// Detailed description.
[3]13
[31]14#ifndef DEF_PACPUS_DBTPLYTRIGGER_H
15#define DEF_PACPUS_DBTPLYTRIGGER_H
[3]16
[31]17#include <QThread>
[3]18
[31]19#include <Pacpus/DbitePlayer/DbitePlayerConfig.h>
20#include <Pacpus/DbitePlayer/DbtPlyEngine.h>
21#include <Pacpus/kernel/ComponentBase.h>
22#include <Pacpus/kernel/ComponentFactory.h>
[3]23
24#ifdef WIN32
25# include <windows.h>
26# include <mmsystem.h>
27#endif
28
29namespace pacpus {
30
31class DbtPlyEngine;
32
33class DBITE_PLAYER_API DbtPlyTrigger
34 : public QThread
35 , public ComponentBase
36{
37 Q_OBJECT
38
39public:
[61]40 /// @todo Documentation
[3]41 DbtPlyTrigger(QString name);
[61]42 /// @todo Documentation
[3]43 virtual ~DbtPlyTrigger();
44
[61]45 /// @todo Documentation
[3]46 virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config);
47
[61]48 /// @todo Documentation
[3]49 virtual void run();
50
51Q_SIGNALS:
[61]52 /// @todo Documentation
[3]53 void triggerSig();
54
55protected:
[61]56 /// @todo Documentation
[3]57 virtual void startActivity();
[61]58 /// @todo Documentation
[3]59 virtual void stopActivity();
60
61private:
62 DbtPlyEngine * mEngine;
63};
64
65} // namespace pacpus
66
[31]67#endif // DEF_PACPUS_DBTPLYTRIGGER_H
Note: See TracBrowser for help on using the repository browser.