source: pacpussensors/trunk/StdDbtPlayerComponents/DbtPlyAlascaManager.h@ 110

Last change on this file since 110 was 110, checked in by DHERBOMEZ Gérald, 9 years ago
  • minor modifications about dllexport and dllimport macros usages
File size: 1.2 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
22namespace pacpus {
23
24class ShMem;
25
26class PACPUSLIB_API DbtPlyAlascaManager
27 : public DbtPlyFileManager
28{
29public:
30 DbtPlyAlascaManager(QString name);
31 ~DbtPlyAlascaManager();
32
33protected:
34 void processData(road_time_t t, road_timerange_t tr, void * buffer);
35 void displayUI();
36
37 virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config);
38 virtual void startActivity();
39 virtual void stopActivity();
40
41private:
42 ShMem * mShMem;
43 ScanAlascaData mAlascaData;
44
45 std::ifstream mDataFile;
46 QString mDataFilename;
47};
48
49} // namespace pacpus
50
51#endif // DBTPLYALASCAMANAGER_H
Note: See TracBrowser for help on using the repository browser.