mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
17 lines
316 B
C++
17 lines
316 B
C++
#ifndef COLORS_H
|
|
#define COLORS_H
|
|
|
|
#include "core/Cutter.h"
|
|
#include "common/RichTextPainter.h"
|
|
#include <rz_analysis.h>
|
|
|
|
class Colors
|
|
{
|
|
public:
|
|
Colors();
|
|
static void colorizeAssembly(RichTextPainter::List &list, QString opcode, ut64 type_num);
|
|
static QString getColor(ut64 type);
|
|
};
|
|
|
|
#endif // COLORS_H
|