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