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.2 KB
|
Rev | Line | |
---|
[43] | 1 | // *********************************************************************
|
---|
| 2 | // created: 2014-02-11 - 16:51
|
---|
| 3 | // filename: DbtPlySickLMSManager.h
|
---|
| 4 | //
|
---|
| 5 | // author: Cyril Fougeray
|
---|
| 6 | // Copyright Heudiasyc UMR UTC/CNRS 6599
|
---|
| 7 | //
|
---|
| 8 | // version: $Id: $
|
---|
| 9 | //
|
---|
| 10 | // purpose:
|
---|
| 11 | // *********************************************************************
|
---|
| 12 |
|
---|
| 13 | #ifndef DBTPLYSICKLMSMANAGER_H
|
---|
| 14 | #define DBTPLYSICKLMSMANAGER_H
|
---|
| 15 |
|
---|
| 16 | #include <fstream>
|
---|
| 17 |
|
---|
[50] | 18 | #include "Pacpus/DbitePlayer/DbtPlyFileManager.h"
|
---|
[43] | 19 | #include "../Sick/SickLMSData.h"
|
---|
[111] | 20 | #include "StdDbtPlayerComponentsConfig.h"
|
---|
[43] | 21 |
|
---|
| 22 |
|
---|
| 23 | namespace pacpus {
|
---|
| 24 |
|
---|
| 25 | class ShMem;
|
---|
| 26 |
|
---|
[111] | 27 | class STDDBTPLAYERCOMPONENTS_API DbtPlySickLMSManager
|
---|
[43] | 28 | : public DbtPlyFileManager
|
---|
| 29 | {
|
---|
| 30 | public:
|
---|
| 31 | DbtPlySickLMSManager(QString name);
|
---|
| 32 | ~DbtPlySickLMSManager();
|
---|
| 33 |
|
---|
| 34 | protected:
|
---|
| 35 | void processData(road_time_t t, road_timerange_t tr, void * buffer);
|
---|
| 36 | void displayUI();
|
---|
| 37 |
|
---|
| 38 | virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config);
|
---|
| 39 | virtual void startActivity();
|
---|
| 40 | virtual void stopActivity();
|
---|
| 41 |
|
---|
| 42 | private:
|
---|
| 43 | // ShMem * mShMem;
|
---|
| 44 | SickLMS_dbt mSickDbt;
|
---|
| 45 |
|
---|
| 46 | std::ifstream mDataFile;
|
---|
| 47 | QString mDataFilename;
|
---|
| 48 |
|
---|
| 49 | QStringList mDataFilenameList;
|
---|
| 50 | };
|
---|
| 51 |
|
---|
| 52 | } // namespace pacpus
|
---|
| 53 |
|
---|
[99] | 54 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.