summaryrefslogtreecommitdiff
path: root/libopie2/opienet/omanufacturerdb.h
Side-by-side diff
Diffstat (limited to 'libopie2/opienet/omanufacturerdb.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opienet/omanufacturerdb.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libopie2/opienet/omanufacturerdb.h b/libopie2/opienet/omanufacturerdb.h
index c2712e5..5c1940e 100644
--- a/libopie2/opienet/omanufacturerdb.h
+++ b/libopie2/opienet/omanufacturerdb.h
@@ -30,12 +30,15 @@
#ifndef OMANUFACTURERDB_H
#define OMANUFACTURERDB_H
#include <qmap.h>
+namespace Opie {
+namespace Net {
+
/**
* @brief A Ethernet card vendor database.
*
* This class encapsulates the lookup of Ethernet vendor given a
* certain Mac Address. Only the first three bytes define the vendor.
*/
@@ -60,10 +63,15 @@ class OManufacturerDB
virtual ~OManufacturerDB();
private:
QMap<QString, QString> manufacturers;
QMap<QString, QString> manufacturersExt;
static OManufacturerDB* _instance;
+ class Private;
+ Private *d;
};
+}
+}
+
#endif