16 lines
260 B
C++
16 lines
260 B
C++
#ifndef COMPLIB_SERVER_DISPLAY_HPP
|
|
#define COMPLIB_SERVER_DISPLAY_HPP
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
class Display {
|
|
public:
|
|
static void write(uint8_t line, std::string text);
|
|
|
|
private:
|
|
|
|
Display() = default;
|
|
};
|
|
|
|
#endif //COMPLIB_SERVER_DISPLAY_HPP
|