20 lines
396 B
C++
20 lines
396 B
C++
|
/**
|
||
|
* @brief demo application for the library
|
||
|
* @author Christian Burger (christian@krikkel.de)
|
||
|
*/
|
||
|
|
||
|
#ifndef A3B2AE4E_0A39_468C_8CCA_E6508166702A
|
||
|
#define A3B2AE4E_0A39_468C_8CCA_E6508166702A
|
||
|
|
||
|
#include <cursesapp.h>
|
||
|
|
||
|
namespace krikkel::NCursesPty
|
||
|
{
|
||
|
class NCursesPtyApp : public NCursesApplication
|
||
|
{
|
||
|
int run() override;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* A3B2AE4E_0A39_468C_8CCA_E6508166702A */
|