Minor update

This commit is contained in:
Pranav Srinivas Kumar
2019-12-04 13:24:15 -06:00
parent 3fbf29967a
commit 0d3f2e80be
4 changed files with 20 additions and 16 deletions

View File

@@ -1,11 +1,13 @@
#pragma once
#include <atomic>
#include <indicators/termcolor.hpp>
#include <indicator/termcolor.hpp>
#include <iostream>
#include <mutex>
#include <string>
#include <thread>
namespace indicator {
class ProgressBar {
public:
enum class Color { GREY, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE };
@@ -160,3 +162,5 @@ private:
std::cout << termcolor::reset << std::endl;
}
};
}