mirror of
https://github.com/p-ranav/indicators.git
synced 2025-12-16 04:18:51 +08:00
Cleanup
This commit is contained in:
@@ -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 };
|
||||
}
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user