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>
|
|
|
|
|
|
|
|
|
|
void printError(std::string err, bool eol = true);
|
2021-01-28 07:22:24 +01:00
|
|
|
void printWarn(std::string warn, bool eol = true);
|
2019-11-20 07:51:21 +01:00
|
|
|
void printInfo(std::string info, bool eol = true);
|
|
|
|
|
void printSuccess(std::string success, bool eol = true);
|
|
|
|
|
|
|
|
|
|
#endif // DISPLAY_HPP_
|