00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef OTDRIVERLIST_H
00012 #define OTDRIVERLIST_H
00013
00014 #include <qvector.h>
00015
00016 namespace Opietooth2 {
00017
00018 class OTDriver;
00019 class OTGateway;
00020
00021 class OTDriverList : public QVector<OTDriver> {
00022
00023 public:
00024
00025 OTDriverList( OTGateway * _OT );
00026 ~OTDriverList();
00027
00028 inline OTGateway * gateway() const
00029 { return OT; }
00030
00031 void update();
00032
00033 private:
00034
00035
00036 OTGateway * OT;
00037 };
00038
00039 }
00040 #endif