17 lines
293 B
C++
17 lines
293 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class TermInfo
|
|
{
|
|
// https://invisible-island.net/ncurses/
|
|
// https://man7.org/linux/man-pages/man5/terminfo.5.html
|
|
// Best grab a coffee
|
|
public:
|
|
bool load_terminfo(const std::string& terminfo_dir,
|
|
const std::string& term);
|
|
|
|
void load();
|
|
};
|
|
|
|
|