Last change
on this file since 80 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 |
|
---|
12 | class GpsMainWindowImpl : public GpsMainWindow
|
---|
13 | {
|
---|
14 | Q_OBJECT
|
---|
15 | public:
|
---|
16 | GpsMainWindowImpl( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
|
---|
17 | ~GpsMainWindowImpl();
|
---|
18 |
|
---|
19 | public slots:
|
---|
20 | void configuration();
|
---|
21 | void startAcquisition();
|
---|
22 | void stopAcquisition();
|
---|
23 |
|
---|
24 | public:
|
---|
25 |
|
---|
26 | GpsConfigDialogImpl* configDialog;
|
---|
27 |
|
---|
28 | private:
|
---|
29 | ComponentManager* _componentManager;
|
---|
30 |
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif // GPSMAINWINDOWIMPL_H |
---|
Note:
See
TracBrowser
for help on using the repository browser.