summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stumblerstation.h
authorskyhusker <skyhusker>2005-04-20 10:25:20 (UTC)
committer skyhusker <skyhusker>2005-04-20 10:25:20 (UTC)
commite439d0e6eaa6704a8b1b89ea32aa8a0520738a04 (patch) (side-by-side diff)
tree18c8b1eba5e1836f757765e4204d638500aa79f2 /noncore/net/opiestumbler/stumblerstation.h
parentf6b9c85c09692f298ffa5ee95e1f171a9e158502 (diff)
downloadopie-e439d0e6eaa6704a8b1b89ea32aa8a0520738a04.zip
opie-e439d0e6eaa6704a8b1b89ea32aa8a0520738a04.tar.gz
opie-e439d0e6eaa6704a8b1b89ea32aa8a0520738a04.tar.bz2
First commit of OpieStumbler, an application which performs wireless networks scanning using Wireless Extensions
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 @@
+#ifndef STUMBLERSTATION_H
+#define STUMBLERSTATION_H
+
+#include <opie2/ostation.h>
+
+#include <qdatetime.h>
+
+class StumblerStation
+{
+public:
+ StumblerStation(Opie::Net::OStation *station, const QDateTime &tm);
+ ~StumblerStation();
+ bool operator<(const StumblerStation &rhs);
+ Opie::Net::OStation *st;
+ QDateTime lastTimeSeen;
+};
+
+#endif