mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 04:46:11 +00:00
15 lines
181 B
C
15 lines
181 B
C
|
#ifndef COLORS_H
|
||
|
#define COLORS_H
|
||
|
|
||
|
#include "cutter.h"
|
||
|
#include "libr/r_anal.h"
|
||
|
|
||
|
class Colors
|
||
|
{
|
||
|
public:
|
||
|
Colors();
|
||
|
static QString getColor(ut64 type);
|
||
|
};
|
||
|
|
||
|
#endif // COLORS_H
|