1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

HexEditor: Add get_byte() method to HexEditor class

This commit is contained in:
Timothy Slater 2022-03-03 08:21:10 -06:00 committed by Ali Mohammad Pur
parent 1b70c5f605
commit 604557c71b
2 changed files with 9 additions and 0 deletions

View file

@ -39,6 +39,7 @@ public:
bool open_new_file(size_t size);
void open_file(NonnullRefPtr<Core::File> file);
void fill_selection(u8 fill_byte);
Optional<u8> get_byte(size_t position);
bool save_as(NonnullRefPtr<Core::File>);
bool save();