This commit is contained in:
Pranav Srinivas KumaR
2019-12-04 21:10:58 -06:00
parent 9f8cd55762
commit e1dbc1ed8a
7 changed files with 60 additions and 60 deletions

View File

@@ -1,5 +1,5 @@
/*
Activity Indicator for Modern C++
Activity Indicators for Modern C++
https://github.com/p-ranav/indica
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -25,8 +25,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include <indica/termcolor.hpp>
#include <indicators/termcolor.hpp>
namespace indica {
namespace indicators {
enum class Color { GREY, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE };
}

View File

@@ -1,6 +1,6 @@
/*
Activity Indicator for Modern C++
https://github.com/p-ranav/indica
Activity Indicators for Modern C++
https://github.com/p-ranav/indicators
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX-License-Identifier: MIT
@@ -26,13 +26,13 @@ SOFTWARE.
*/
#pragma once
#include <atomic>
#include <indica/color.hpp>
#include <indicators/color.hpp>
#include <iostream>
#include <mutex>
#include <string>
#include <thread>
namespace indica {
namespace indicators {
class ProgressBar {
public:
@@ -187,4 +187,4 @@ private:
}
};
} // namespace indica
} // namespace indicators

View File

@@ -1,6 +1,6 @@
/*
Activity Indicator for Modern C++
https://github.com/p-ranav/indica
Activity Indicators for Modern C++
https://github.com/p-ranav/indicators
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX-License-Identifier: MIT
@@ -26,14 +26,14 @@ SOFTWARE.
*/
#pragma once
#include <atomic>
#include <indica/color.hpp>
#include <indicators/color.hpp>
#include <iostream>
#include <mutex>
#include <string>
#include <thread>
#include <vector>
namespace indica {
namespace indicators {
class ProgressSpinner {
public:
@@ -156,4 +156,4 @@ private:
}
};
} // namespace indica
} // namespace indicators