Last change
on this file since 140 was 111, checked in by DHERBOMEZ Gérald, 9 years ago |
Delete deprecated call to shared memories. Use I/O mechanism instead.
Adjustement of dllimport and dllexport macros;
|
File size:
1.3 KB
|
Rev | Line | |
---|
[82] | 1 | /*********************************************************************
|
---|
| 2 | // created: 2007/07/28 - 11:51
|
---|
| 3 | // filename: DbtPlyGstManager.h
|
---|
| 4 | //
|
---|
| 5 | // author: Gerald Dherbomez
|
---|
| 6 | // Copyright Heudiasyc UMR UTC/CNRS 6599
|
---|
| 7 | //
|
---|
| 8 | // version: $Id: $
|
---|
| 9 | //
|
---|
| 10 | // purpose: Dbite Player GST Manager
|
---|
| 11 | *********************************************************************/
|
---|
| 12 |
|
---|
| 13 | #ifndef DBTPLYGSTMANAGER_H
|
---|
| 14 | #define DBTPLYGSTMANAGER_H
|
---|
| 15 |
|
---|
| 16 | #include <QLCDNumber>
|
---|
| 17 | #include <QGroupBox>
|
---|
| 18 | #include <QLabel>
|
---|
| 19 | #include <QLayout>
|
---|
| 20 |
|
---|
| 21 | #include "Pacpus/DbitePlayer/DbtPlyFileManager.h"
|
---|
[109] | 22 | #include "../Gps/structure_gps.h"
|
---|
[82] | 23 | #include "Pacpus/kernel/ComponentManager.h"//moved from .cpp
|
---|
| 24 | //#include "DbitePlayer/SensorTcpServer.h" //added
|
---|
| 25 | #include "Pacpus/PacpusTools/ShMem.h"
|
---|
| 26 |
|
---|
| 27 | #include "DbtPlyGpsConfig.h"
|
---|
| 28 |
|
---|
| 29 | namespace pacpus {
|
---|
| 30 |
|
---|
[111] | 31 | class DBTPLYGPS_API DbtPlyGstManager
|
---|
[82] | 32 | : public DbtPlyFileManager
|
---|
| 33 | {
|
---|
| 34 | public:
|
---|
| 35 | DbtPlyGstManager(QString name);
|
---|
| 36 | ~DbtPlyGstManager();
|
---|
| 37 | virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config);
|
---|
| 38 |
|
---|
| 39 | protected:
|
---|
| 40 | void processData(road_time_t t, road_timerange_t tr , void *buf);
|
---|
| 41 | virtual void startActivity();
|
---|
| 42 | virtual void stopActivity();
|
---|
| 43 | void displayUI();
|
---|
| 44 |
|
---|
| 45 | private:
|
---|
| 46 | trame_gst* val;
|
---|
| 47 |
|
---|
| 48 |
|
---|
| 49 | };
|
---|
| 50 |
|
---|
| 51 | } // namespace pacpus
|
---|
| 52 |
|
---|
| 53 | #endif // DBTPLYGSTMANAGER_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.