summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/opietooth2/OTDriverList.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/opietooth2/OTDriverList.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/opietooth2/OTDriverList.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/opietooth2/OTDriverList.h b/noncore/settings/networksettings2/opietooth2/OTDriverList.h
new file mode 100644
index 0000000..c98ffa0
--- a/dev/null
+++ b/noncore/settings/networksettings2/opietooth2/OTDriverList.h
@@ -0,0 +1,40 @@
+/***************************************************************************
+ * Copyright (C) 2003 by Mattia Merzi *
+ * ottobit@ferrara.linux.it *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ ***************************************************************************/
+
+#ifndef OTDRIVERLIST_H
+#define OTDRIVERLIST_H
+
+#include <qvector.h>
+
+namespace Opietooth2 {
+
+class OTDriver;
+class OTGateway;
+
+class OTDriverList : public QVector<OTDriver> {
+
+public:
+
+ OTDriverList( OTGateway * _OT );
+ ~OTDriverList();
+
+ inline OTGateway * gateway() const
+ { return OT; }
+
+ void update();
+
+private:
+
+ // backpointer
+ OTGateway * OT;
+};
+
+}
+#endif