moving repo
This commit is contained in:
18
src/cursor.h
18
src/cursor.h
@ -1,7 +1,23 @@
|
||||
#ifndef __CURSOR_H__
|
||||
#define __CURSOR_H__
|
||||
#include <string>
|
||||
#include <ncurses.h>
|
||||
#include "position.h"
|
||||
|
||||
class cursor;
|
||||
class cursor{
|
||||
private:
|
||||
public:
|
||||
cursor();
|
||||
|
||||
~cursor();
|
||||
|
||||
int getcmd() const;
|
||||
|
||||
void show() const;
|
||||
|
||||
void print_char(const position &pos) const;
|
||||
|
||||
void print_str(const position &head, const std::string str) const;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user