Added single header file v1.7

This commit is contained in:
Pranav Srinivas Kumar
2020-02-13 14:20:40 +05:30
parent 2b27d8f516
commit f5b6b4d779
3 changed files with 1434 additions and 7 deletions

View File

@@ -70,8 +70,8 @@ int main() {
option::Lead{">"},
option::Remainder{" "},
option::End{"]"},
option::PostfixText{"Extracting Archive"};
option::ForegroundColor{Color::green};
option::PostfixText{"Extracting Archive"},
option::ForegroundColor{Color::green}
};
// Update bar state
@@ -174,9 +174,9 @@ int main() {
option::Remainder{"-"},
option::End{"]"},
option::PrefixText{"Training Gaze Network 👀"},
option::ForegroundColor{Color::yellow}
option::ShowElapsedTime{true};
option::ShowRemainingTime{true};
option::ForegroundColor{Color::yellow},
option::ShowElapsedTime{true},
option::ShowRemainingTime{true}
};
// Update bar state
@@ -271,7 +271,7 @@ int main() {
// Configure second progress bar
ProgressBar bar1{
ProgressBar bar2{
option::BarWidth{50},
option::Start{"["},
option::Fill{"="},

View File

@@ -1,2 +1,2 @@
#!/usr/bin/env bash
find ./include ./demo/ ./samples/ -type f \( -iname \*.cpp -o -iname \*.hpp \) | xargs clang-format -style="{ColumnLimit : 100}" -i
find ./include ./demo/ ./samples/ ./single_include -type f \( -iname \*.cpp -o -iname \*.hpp \) | xargs clang-format -style="{ColumnLimit : 100}" -i

File diff suppressed because it is too large Load Diff