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