File: display.hpp

package info (click to toggle)
openfpgaloader 0.13.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,320 kB
  • sloc: cpp: 23,693; python: 555; makefile: 64; tcl: 62; xml: 41
file content (17 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
/*
 * Copyright (C) 2019 Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
 */

#ifndef DISPLAY_HPP_
#define DISPLAY_HPP_

#include <iostream>
#include <string>

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);

#endif  // DISPLAY_HPP_