Diffstat (limited to 'libopie2/opienet/odebugmapper.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie2/opienet/odebugmapper.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libopie2/opienet/odebugmapper.h b/libopie2/opienet/odebugmapper.h new file mode 100644 index 0000000..66b331d --- a/dev/null +++ b/libopie2/opienet/odebugmapper.h @@ -0,0 +1,26 @@ + +/* + * debug value mapper - generated by regen.py - (C) Michael 'Mickey' Lauer <mickey@vanille.de> + */ + +#ifndef DEBUGMAPPER_H +#define DEBUGMAPPER_H + +#include <qstring.h> +#include <qintdict.h> + +typedef QIntDict<QString> IntStringMap; + +class DebugMapper +{ + public: + DebugMapper(); + ~DebugMapper(); + + const QString& map( int value ) const; + private: + IntStringMap _map; +}; + +#endif + |