thin-provisioning-tools/ui/ui.h

21 lines
278 B
C
Raw Permalink Normal View History

2016-02-26 18:20:17 +05:30
#ifndef UI_UI_H
#include <ncurses.h>
//----------------------------------------------------------------
namespace ui {
class text_ui {
public:
text_ui();
~text_ui();
void refresh();
};
};
//----------------------------------------------------------------
#endif