summaryrefslogtreecommitdiff
path: root/libopie2/opienet/odebugmapper.h
Side-by-side diff
Diffstat (limited to 'libopie2/opienet/odebugmapper.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/odebugmapper.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libopie2/opienet/odebugmapper.h b/libopie2/opienet/odebugmapper.h
index 66b331d..f47db47 100644
--- a/libopie2/opienet/odebugmapper.h
+++ b/libopie2/opienet/odebugmapper.h
@@ -6,21 +6,31 @@
#ifndef DEBUGMAPPER_H
#define DEBUGMAPPER_H
#include <qstring.h>
#include <qintdict.h>
+namespace Opie {
+namespace Net {
+namespace Private {
+
typedef QIntDict<QString> IntStringMap;
class DebugMapper
{
public:
DebugMapper();
~DebugMapper();
const QString& map( int value ) const;
private:
IntStringMap _map;
+ class Private;
+ Private *d;
};
+}
+}
+}
+
#endif