kNCurses/App.hpp

24 lines
458 B
C++
Raw Permalink Normal View History

/**
* @brief demo application for the library
* @author Christian Burger (christian@krikkel.de)
*/
#ifndef A3B2AE4E_0A39_468C_8CCA_E6508166702A
#define A3B2AE4E_0A39_468C_8CCA_E6508166702A
2022-04-15 16:59:02 +02:00
#include <ncursesw/cursesapp.h>
namespace krikkel::NCursesPtyWindow
{
2022-04-13 19:41:41 +02:00
class App : public NCursesApplication
{
public:
2022-04-13 19:41:41 +02:00
App();
private:
int run() override;
};
}
#endif /* A3B2AE4E_0A39_468C_8CCA_E6508166702A */