summaryrefslogtreecommitdiff
path: root/inc/Screen.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Screen.hpp')
-rw-r--r--inc/Screen.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/inc/Screen.hpp b/inc/Screen.hpp
new file mode 100644
index 0000000..505f4e2
--- /dev/null
+++ b/inc/Screen.hpp
@@ -0,0 +1,21 @@
+#ifndef window_h
+#define window_h
+
+#include <string>
+#include "ncurses.h"
+
+using namespace std;
+
+class Screen
+{
+ public:
+ Screen();
+ ~Screen();
+ void ping(string msg);
+ int getHeight();
+ int getWidth();
+ private:
+ int height, width;
+};
+
+#endif