mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
sys: Added filter option to find view
This commit is contained in:
@@ -10,9 +10,12 @@ namespace hex {
|
||||
|
||||
class Task {
|
||||
public:
|
||||
Task() = default;
|
||||
Task(const std::string &unlocalizedName, u64 maxValue);
|
||||
~Task();
|
||||
|
||||
Task(Task &&other) noexcept;
|
||||
|
||||
void setMaxValue(u64 maxValue);
|
||||
void update(u64 currValue);
|
||||
void finish();
|
||||
@@ -29,7 +32,7 @@ namespace hex {
|
||||
|
||||
private:
|
||||
std::string m_name;
|
||||
u64 m_maxValue, m_currValue;
|
||||
u64 m_maxValue = 0, m_currValue = 0;
|
||||
|
||||
static std::list<Task *> s_runningTasks;
|
||||
static std::mutex s_taskMutex;
|
||||
|
||||
Reference in New Issue
Block a user