summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stumblerstation.h
Unidiff
Diffstat (limited to 'noncore/net/opiestumbler/stumblerstation.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opiestumbler/stumblerstation.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/noncore/net/opiestumbler/stumblerstation.h b/noncore/net/opiestumbler/stumblerstation.h
new file mode 100644
index 0000000..1532193
--- a/dev/null
+++ b/noncore/net/opiestumbler/stumblerstation.h
@@ -0,0 +1,18 @@
1#ifndef STUMBLERSTATION_H
2#define STUMBLERSTATION_H
3
4#include <opie2/ostation.h>
5
6#include <qdatetime.h>
7
8class StumblerStation
9{
10public:
11 StumblerStation(Opie::Net::OStation *station, const QDateTime &tm);
12 ~StumblerStation();
13 bool operator<(const StumblerStation &rhs);
14 Opie::Net::OStation *st;
15 QDateTime lastTimeSeen;
16};
17
18#endif