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