mirror of https://github.com/bsnes-emu/bsnes.git
17 lines
330 B
C++
17 lines
330 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pHexEdit : public pWidget {
|
||
|
HexEdit &hexEdit;
|
||
|
|
||
|
void setColumns(unsigned columns);
|
||
|
void setLength(unsigned length);
|
||
|
void setOffset(unsigned offset);
|
||
|
void setRows(unsigned rows);
|
||
|
void update();
|
||
|
|
||
|
pHexEdit(HexEdit &hexEdit) : pWidget(hexEdit), hexEdit(hexEdit) {}
|
||
|
void constructor();
|
||
|
};
|
||
|
|
||
|
}
|