source: pacpussensors/trunk/Gps/ui/gpsmainwindowimpl.h@ 149

Last change on this file since 149 was 59, checked in by DHERBOMEZ Gérald, 10 years ago

Integration of new modules:

  • GPS NMEA0183 decoder
  • Span CPT Decoder

Update of:

File size: 662 bytes
Line 
1#ifndef GPSMAINWINDOWIMPL_H
2#define GPSMAINWINDOWIMPL_H
3
4
5#include "gpsmainwindow.h"
6#include "sensor/gpsComponent.h"
7#include "kernel/XmlConfigFile.h"
8#include "kernel/componentManager.h"
9#include "gpsconfigdialogImpl.h"
10
11
12class GpsMainWindowImpl : public GpsMainWindow
13{
14 Q_OBJECT
15public:
16 GpsMainWindowImpl( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
17 ~GpsMainWindowImpl();
18
19public slots:
20 void configuration();
21 void startAcquisition();
22 void stopAcquisition();
23
24public:
25
26 GpsConfigDialogImpl* configDialog;
27
28private:
29 ComponentManager* _componentManager;
30
31};
32
33#endif // GPSMAINWINDOWIMPL_H
Note: See TracBrowser for help on using the repository browser.