cutter/src/common/Colors.h

17 lines
312 B
C
Raw Normal View History

2017-10-15 07:14:05 +00:00
#ifndef COLORS_H
#define COLORS_H
#include "core/Cutter.h"
2018-10-17 07:55:53 +00:00
#include "common/RichTextPainter.h"
2020-10-28 12:28:04 +00:00
#include <rz_anal.h>
2017-10-15 07:14:05 +00:00
class Colors
{
public:
Colors();
2017-10-15 11:38:28 +00:00
static void colorizeAssembly(RichTextPainter::List &list, QString opcode, ut64 type_num);
2017-10-15 07:14:05 +00:00
static QString getColor(ut64 type);
};
#endif // COLORS_H