summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stumblerstation.h
blob: 1532193609ef60ec9e58cc8616ee7ff2e9f5f411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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