pacman/lcd/lib/lcd.hpp

13 lines
233 B
C++
Raw Normal View History

2020-11-29 18:11:19 +00:00
#pragma once
2020-11-29 16:42:03 +00:00
2020-11-29 18:11:19 +00:00
#include <string>
#include <vector>
2020-11-29 16:42:03 +00:00
2020-11-29 18:11:19 +00:00
typedef std::vector<std::string> lcd_grid;
2020-11-29 16:42:03 +00:00
2020-11-29 18:11:19 +00:00
lcd_grid lcd(int value);
2020-11-29 18:21:55 +00:00
lcd_grid lcd(const std::string & s1,
const std::string & s2,
const std::string & s3);