2020-11-27 23:33:26 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/views/view.hpp>
|
2020-11-27 23:33:26 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/helpers/utils.hpp>
|
2020-11-27 23:33:26 +00:00
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
|
|
|
class ViewBookmarks : public View {
|
|
|
|
public:
|
2021-01-20 19:16:24 +00:00
|
|
|
ViewBookmarks();
|
2020-11-27 23:33:26 +00:00
|
|
|
~ViewBookmarks() override;
|
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() override;
|
2020-11-27 23:33:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|