AppCore
Loading...
Searching...
No Matches
ds_gpstimer.h
Go to the documentation of this file.
1#ifndef DS_GPSTIMER_H
2#define DS_GPSTIMER_H
3
4#include <qobject.h>
5#include "ds_typedefs.h"
6
7// forward declaration
8class DS_GpsTimerData;
10
11class DS_GpsTimer : public QObject
12{
13 Q_OBJECT
14public:
16 virtual ~DS_GpsTimer();
21 void SetFrequency(long int miliSeconds);
22
23private slots:
27 void OnTimeout();
28
29private:
30 DS_GpsTimerData *d;
31};
32
33#endif // DS_GPSTIMER_H
Definition ds_gpstimer.h:12
void SetFrequency(long int miliSeconds)
Definition ds_gpstimer.cpp:36
virtual ~DS_GpsTimer()
Definition ds_gpstimer.cpp:31
Definition DispatchingModuleManager.h:27