X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FTermlib%2FAbstractTerminal.hh;h=95408f6b45f93d4c3415e90a1f293b58e70e0e1b;hb=1d95912e59f822e19e4972727fa2fa6db6b2bf63;hp=22b3e0cce81897d8ba88f76a3c4ae219431be238;hpb=733d6e35453c9df1b281b24d2b0af8538ca9ccf7;p=senf.git diff --git a/Utils/Termlib/AbstractTerminal.hh b/Utils/Termlib/AbstractTerminal.hh index 22b3e0c..95408f6 100644 --- a/Utils/Termlib/AbstractTerminal.hh +++ b/Utils/Termlib/AbstractTerminal.hh @@ -66,11 +66,11 @@ namespace term { virtual ~AbstractTerminal() {} - virtual void setCallbacks(Callbacks & cb) = 0; /// Register terminal callbacks + virtual void setCallbacks(Callbacks & cb) = 0; ///< Register terminal callbacks virtual std::string terminalType() = 0; ///< Get the terminal type - virtual unsigned width() = 0; ///< Get current terminal window width - virtual unsigned height() = 0; ///< Get current terminal window height + virtual unsigned width() const = 0; ///< Get current terminal window width + virtual unsigned height() const = 0; ///< Get current terminal window height virtual void write(char ch) = 0; ///< Write character to terminal };