Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/cursor.h File Reference

Declaration of the setcursorposition() and getcursorposition() functions for manipulating the cursor position on Windows terminals. More...

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  Helpers
 The namespace containing all the "helper" functions in the C++ code.
 

Macros

#define __CURSOR_H__
 

Functions

void disableinputecho ()
 Disable echoing input until enableinputecho() is called.
 
void enableinputecho ()
 Enable echoing input, which should be the default mode. Call this only after calling disableinputecho();.
 
void setcursorposition (int row, int column)
 Move the text cursor to the specified screen coordinates.
 
void getcursorposition (int *row, int *column)
 Retrieve the current cursor position in the console window.
 

Detailed Description

Declaration of the setcursorposition() and getcursorposition() functions for manipulating the cursor position on Windows terminals.

Definition in file lusplus/helpers/cursor.h.

Macro Definition Documentation

◆ __CURSOR_H__

#define __CURSOR_H__

Definition at line 9 of file lusplus/helpers/cursor.h.