cutter/src/common/Colors.h

17 lines
306 B
C
Raw Normal View History

2017-10-15 07:14:05 +00:00
#ifndef COLORS_H
#define COLORS_H
2018-03-04 17:42:02 +00:00
#include "Cutter.h"
2018-10-17 07:55:53 +00:00
#include "common/RichTextPainter.h"
2017-10-15 11:38:28 +00:00
#include <r_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