thin-provisioning-tools/ui/ui.h
2016-02-26 12:50:17 +00:00

21 lines
278 B
C++

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