2021-06-26 15:24:07 +02:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2019-11-20 07:51:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2019 Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef DISPLAY_HPP_
|
|
|
|
|
#define DISPLAY_HPP_
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <string>
|
|
|
|
|
|
2023-04-15 08:20:05 +02:00
|
|
|
void printError(const std::string &err, bool eol = true);
|
|
|
|
|
void printWarn(const std::string &warn, bool eol = true);
|
|
|
|
|
void printInfo(const std::string &info, bool eol = true);
|
|
|
|
|
void printSuccess(const std::string &success, bool eol = true);
|
2019-11-20 07:51:21 +01:00
|
|
|
|
|
|
|
|
#endif // DISPLAY_HPP_
|