[82] | 1 | /*********************************************************************
|
---|
| 2 | // created: 2007/04/12 - 16:30
|
---|
| 3 |
|
---|
| 4 | //
|
---|
| 5 | // author: Elie Al Alam & Gerald Dherbomez
|
---|
| 6 | //
|
---|
| 7 | // version: $Id: DbtPlyVtgManager.cpp 676 2008-06-26 10:33:57Z gdherbom $
|
---|
| 8 | //
|
---|
| 9 | // purpose: Dbite Player GGA Manager implementation
|
---|
| 10 | *********************************************************************/
|
---|
| 11 |
|
---|
| 12 | #include "DbtPlyVtgManager.h"
|
---|
| 13 |
|
---|
| 14 | #include <cmath>
|
---|
| 15 | #include <qapplication.h>
|
---|
| 16 |
|
---|
| 17 | #include "Pacpus/kernel/ComponentManager.h"
|
---|
| 18 |
|
---|
| 19 | namespace pacpus {
|
---|
| 20 |
|
---|
| 21 | //////////////////////////////////////////////////////////////////////////
|
---|
| 22 | // Construction de la fabrique de composant DbtPlyVtgManager
|
---|
| 23 | //////////////////////////////////////////////////////////////////////////
|
---|
| 24 | static ComponentFactory<DbtPlyVtgManager> sFactory("DbtPlyVtgManager");
|
---|
| 25 |
|
---|
| 26 | // double dist1[2];
|
---|
| 27 | // double dist2[2];
|
---|
| 28 |
|
---|
| 29 | //////////////////////////////////////////////////////////////////////////
|
---|
| 30 | // Constructor
|
---|
| 31 | //////////////////////////////////////////////////////////////////////////
|
---|
| 32 | DbtPlyVtgManager::DbtPlyVtgManager(QString name)
|
---|
| 33 | : DbtPlyFileManager (name)
|
---|
| 34 | {
|
---|
| 35 |
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | //////////////////////////////////////////////////////////////////////////
|
---|
| 39 | // Destructor
|
---|
| 40 | DbtPlyVtgManager::~DbtPlyVtgManager()
|
---|
| 41 | {
|
---|
| 42 |
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | //////////////////////////////////////////////////////////////////////////
|
---|
| 46 | // Processes data
|
---|
| 47 | void DbtPlyVtgManager::processData(road_time_t /*t*/, road_timerange_t /*tr*/ , void * buf)
|
---|
| 48 | {
|
---|
| 49 | val = (trame_vtg*)(buf);
|
---|
| 50 |
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | ComponentBase::COMPONENT_CONFIGURATION DbtPlyVtgManager::configureComponent(XmlComponentConfig config)
|
---|
| 54 | {
|
---|
| 55 | DbtPlyFileManager::configureComponent(config);
|
---|
| 56 |
|
---|
| 57 | return ComponentBase::CONFIGURED_OK;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | void DbtPlyVtgManager::startActivity()
|
---|
| 61 | {
|
---|
| 62 | DbtPlyFileManager::startActivity();
|
---|
| 63 | // user interface
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | void DbtPlyVtgManager::stopActivity()
|
---|
| 67 | {
|
---|
| 68 | DbtPlyFileManager::stopActivity();
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | } // namespace pacpus
|
---|