Changeset 290 in pacpusframework for trunk/include/Pacpus/DbitePlayer
- Timestamp:
- Mar 27, 2014, 12:53:36 PM (11 years ago)
- Location:
- trunk/include/Pacpus/DbitePlayer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/DbitePlayer/DbtPlyEngine.h
r179 r290 27 27 #include <string> 28 28 29 namespace pacpus { 29 namespace pacpus 30 { 30 31 31 32 class DbtPlyEngineStateChart; … … 45 46 /// e.g. replay_mode="2" 46 47 class DBITE_PLAYER_API DbtPlyEngine 47 : publicQThread48 48 : public QThread // FIXME: remove QThread 49 , public ComponentBase 49 50 { 50 51 Q_OBJECT -
trunk/include/Pacpus/DbitePlayer/DbtPlyFileManager.h
r288 r290 30 30 #include <Pacpus/kernel/DbiteFile.h> 31 31 32 #include <QString> 32 33 #include <QThread> 33 34 #include <string> … … 35 36 class QSemaphore; 36 37 37 namespace pacpus { 38 namespace pacpus 39 { 38 40 39 41 class DbtPlyEngine; … … 48 50 /// @see DbtPlyEngine 49 51 class DBITE_PLAYER_API DbtPlyFileManager 50 : publicQThread51 52 : public QThread // FIXME: remove QThread 53 , public ComponentBase 52 54 { 53 55 Q_OBJECT … … 61 63 /// the player replays only the last data that has not been yet replayed 62 64 /// @todo Rename 63 void playMode1 65 void playMode1(road_time_t tDbt, bool reverse); 64 66 /// the player replays all the data that have not been yet replayed 65 67 /// @todo Rename 66 void playMode2 68 void playMode2(road_time_t tDbt, bool reverse); 67 69 68 70 /// virtual method: call when new DBT data are replayed -
trunk/include/Pacpus/DbitePlayer/DbtPlyTrigger.h
r288 r290 16 16 #define DEF_PACPUS_DBTPLYTRIGGER_H 17 17 18 #include <QThread>19 20 18 #include <Pacpus/DbitePlayer/DbitePlayerConfig.h> 21 19 #include <Pacpus/DbitePlayer/DbtPlyEngine.h> 22 20 #include <Pacpus/kernel/ComponentBase.h> 23 21 #include <Pacpus/kernel/ComponentFactory.h> 22 23 #include <QString> 24 #include <QThread> 24 25 25 26 #ifdef WIN32 … … 28 29 #endif 29 30 30 namespace pacpus { 31 namespace pacpus 32 { 31 33 32 34 class DbtPlyEngine; 33 35 34 36 class DBITE_PLAYER_API DbtPlyTrigger 35 : publicQThread36 37 : public QThread // FIXME: remove QThread 38 , public ComponentBase 37 39 { 38 40 Q_OBJECT -
trunk/include/Pacpus/DbitePlayer/DbtPlyUserInterface.h
r288 r290 34 34 class QTableWidget; 35 35 36 namespace pacpus { 36 namespace pacpus 37 { 37 38 38 39 class DbtPlyEngine; … … 40 41 41 42 class DBITE_PLAYER_API DbtPlyUserInterface 42 43 43 : public QWidget 44 , public ComponentBase 44 45 { 45 46 Q_OBJECT
Note:
See TracChangeset
for help on using the changeset viewer.