mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 21:47:40 -05:00
sys: Added clang-format file, formatted entire project
This commit is contained in:
@@ -8,21 +8,18 @@ namespace hex {
|
||||
|
||||
class Task {
|
||||
public:
|
||||
Task(const std::string& unlocalizedName, u64 maxValue);
|
||||
Task(const std::string &unlocalizedName, u64 maxValue);
|
||||
~Task();
|
||||
|
||||
void setMaxValue(u64 maxValue);
|
||||
void update(u64 currValue);
|
||||
void finish();
|
||||
|
||||
[[nodiscard]]
|
||||
double getProgress() const;
|
||||
[[nodiscard]] double getProgress() const;
|
||||
|
||||
[[nodiscard]]
|
||||
const std::string& getName() const;
|
||||
[[nodiscard]] const std::string &getName() const;
|
||||
|
||||
[[nodiscard]]
|
||||
bool isPending() const;
|
||||
[[nodiscard]] bool isPending() const;
|
||||
|
||||
private:
|
||||
std::string m_name;
|
||||
|
||||
Reference in New Issue
Block a user