source:
pacpussensors/trunk/StdDbtPlayerComponents/DbtPlyAlascaManager.h@
114
| Last change on this file since 114 was 114, checked in by , 10 years ago | |
|---|---|
| File size: 1.4 KB | |
| Line | |
|---|---|
| 1 | // ********************************************************************* |
| 2 | // created: 2007/11/13 - 16:51 |
| 3 | // filename: DbtPlyAlascaManager.h |
| 4 | // |
| 5 | // author: Gerald Dherbomez |
| 6 | // Copyright Heudiasyc UMR UTC/CNRS 6599 |
| 7 | // |
| 8 | // version: $Id: $ |
| 9 | // |
| 10 | // purpose: |
| 11 | // ********************************************************************* |
| 12 | |
| 13 | #ifndef DBTPLYALASCAMANAGER_H |
| 14 | #define DBTPLYALASCAMANAGER_H |
| 15 | |
| 16 | #include <fstream> |
| 17 | |
| 18 | #include "DbitePlayer/DbtPlyFileManager.h" |
| 19 | //#include "structure/structure_telemetre.h" |
| 20 | #include "../Alasca/AlascaData.h" |
| 21 | #include "StdDbtPlayerComponentsConfig.h" |
| 22 | #include <Pacpus/structures/genericLidarStructures.h> |
| 23 | |
| 24 | namespace pacpus { |
| 25 | |
| 26 | class ShMem; |
| 27 | |
| 28 | class STDDBTPLAYERCOMPONENTS_API DbtPlyAlascaManager |
| 29 | : public DbtPlyFileManager |
| 30 | { |
| 31 | Q_OBJECT |
| 32 | public: |
| 33 | DbtPlyAlascaManager(QString name); |
| 34 | ~DbtPlyAlascaManager(); |
| 35 | |
| 36 | protected: |
| 37 | void processData(road_time_t t, road_timerange_t tr, void * buffer); |
| 38 | void displayUI(); |
| 39 | |
| 40 | ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config); |
| 41 | void startActivity(); |
| 42 | void stopActivity(); |
| 43 | |
| 44 | virtual void addInputs(); |
| 45 | virtual void addOutputs(); |
| 46 | |
| 47 | private: |
| 48 | //ShMem * mShMem;// deprecated |
| 49 | ScanAlascaData mAlascaData; |
| 50 | LidarScan lidarScan; |
| 51 | |
| 52 | std::ifstream mDataFile; |
| 53 | QString mDataFilename; |
| 54 | }; |
| 55 | |
| 56 | } // namespace pacpus |
| 57 | |
| 58 | #endif // DBTPLYALASCAMANAGER_H |
Note:
See TracBrowser
for help on using the repository browser.
