diff options
Diffstat (limited to 'include/ncurses/window.hpp')
| -rw-r--r-- | include/ncurses/window.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/ncurses/window.hpp b/include/ncurses/window.hpp new file mode 100644 index 0000000..7d26776 --- /dev/null +++ b/include/ncurses/window.hpp @@ -0,0 +1,17 @@ +#ifndef INCLUDE_NCURSES_WINDOW_HPP_ +#define INCLUDE_NCURSES_WINDOW_HPP_ + +#include <ncurses/utils/macros.hpp> + +namespace NCURSES_CPP_NAMESPACE { + +class window { +public: + window(int i); + +private: +}; + +} // namespace NCURSES_CPP_NAMESPACE + +#endif // INCLUDE_NCURSES_WINDOW_HPP_ |
