summaryrefslogtreecommitdiff
path: root/example/ntp.h
authortille <tille>2002-06-20 22:13:34 (UTC)
committer tille <tille>2002-06-20 22:13:34 (UTC)
commitc2eb66bc5c5ac4225edff8b369026bd208f8c148 (patch) (side-by-side diff)
tree2175ed4f4db02c7ae182c97bfabb0148d92f5295 /example/ntp.h
parentde666dda3fab5b060071f3b037c04fcc4767870a (diff)
downloadopie-c2eb66bc5c5ac4225edff8b369026bd208f8c148.zip
opie-c2eb66bc5c5ac4225edff8b369026bd208f8c148.tar.gz
opie-c2eb66bc5c5ac4225edff8b369026bd208f8c148.tar.bz2
here it is...
Diffstat (limited to 'example/ntp.h') (more/less context) (ignore whitespace changes)
-rw-r--r--example/ntp.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/example/ntp.h b/example/ntp.h
new file mode 100644
index 0000000..c9c2e9b
--- a/dev/null
+++ b/example/ntp.h
@@ -0,0 +1,35 @@
+#ifndef NTP_H
+#define NTP_H
+#include "ntpbase.h"
+#include <qdatetime.h>
+#include <qtimer.h>
+
+class OProcess;
+class QString;
+
+
+class Ntp : public NtpBase
+{
+ Q_OBJECT
+
+public:
+ Ntp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ ~Ntp();
+
+ OProcess *ntpProcess;
+
+private:
+ QString _ntpOutput;
+ int _maxOffset;
+ float _shiftPerSec;
+ QTimer *_nextCorrection;
+ float getTimeShift();
+ int _minLookupDiff;
+private slots:
+ void slotRunNtp();
+ void getNtpOutput(OProcess *proc, char *buffer, int buflen);
+ void ntpFinished(OProcess*);
+ void correctClock();
+};
+
+#endif