/* * debug value mapper - generated by regen.py - (C) Michael 'Mickey' Lauer */ #ifndef DEBUGMAPPER_H #define DEBUGMAPPER_H #include #include namespace Opie { namespace Net { namespace Internal { typedef QIntDict IntStringMap; class DebugMapper { public: DebugMapper(); ~DebugMapper(); const QString& map( int value ) const; private: IntStringMap _map; class Private; Private *d; }; } } } #endif