[thin_show_metadata] ncurses render

This commit is contained in:
Joe Thornber
2016-02-26 12:50:17 +00:00
parent c4215c0cf6
commit e78de5d3ad
7 changed files with 358 additions and 66 deletions

20
ui/ui.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef UI_UI_H
#include <ncurses.h>
//----------------------------------------------------------------
namespace ui {
class text_ui {
public:
text_ui();
~text_ui();
void refresh();
};
};
//----------------------------------------------------------------
#endif