yaft_class: first somehow working version

This commit is contained in:
Stefan Seyfried
2018-01-02 00:16:19 +01:00
committed by Thilo Graf
parent 2650a62986
commit 9f85296597
2 changed files with 74 additions and 88 deletions

View File

@@ -0,0 +1,19 @@
/*
* definition for embedding the YaFT framebuffer terminal in c++
* (C) 2018 Stefan Seyfried
* License: GPL-2.0+
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef __yaft_class__
#define __yaft_class__
class YaFT
{
public:
YaFT(const char * const *argv);
~YaFT();
int run();
};
#endif