1 /**********************************************************************
2  *
3  *   FreeDoko a Doppelkopf-Game
4  *
5  *   Copyright (C) 2001 – 2018 by Diether Knof and Borg Enders
6  *
7  *   This program is free software; you can redistribute it and/or
8  *   modify it under the terms of the GNU General Public License as
9  *   published by the Free Software Foundation; either version 2 of
10  *   the License, or (at your option) any later version.
11  *
12  *   This program is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *   You can find this license in the file 'gpl.txt'.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with this program; if not, write to the Free Software
20  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  *   MA  02111-1307  USA
22  *
23  *  Contact:
24  *    Diether Knof dknof@posteo.de
25  *
26  **********************************************************************/
27 
28 #pragma once
29 
30 #include "ui.h"
31 
32 namespace UI_TEXT_NS {
33 
34   /**
35    **
36    ** @brief	interface for general commands (like 'quit')
37    **
38    ** @author	Diether Knof
39    **
40    **/
41   class UI_Text::General {
42     public:
43       General(UI_Text* const ui);
44 
45       virtual ~General();
46 
47       // interprets the read line
48       virtual bool interpret_line();
49 
50     private:
51       UI_Text* const ui;
52 
53     private: // unused
54       General();
55       General(General const& ui);
56       General& operator=(General const& ui);
57   }; // class UI_Text::General
58 
59