inial commit

This commit is contained in:
2024-02-11 15:17:07 +01:00
commit 62ea8ab3e3
31 changed files with 6611 additions and 0 deletions

9
bar.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
#include <thread>
#include <indicators/indeterminate_progress_bar.hpp>
#include <indicators/progress_bar.hpp>
std::thread* bar_create_new_indeterminate(const std::string& text);
void bar_stop_indeterminate(std::thread* thread);
indicators::ProgressBar* bar_create_new(std::string text, size_t maxProgress);