Cute Chess  0.1
cutechesscoreapp.h
1 /*
2  This file is part of Cute Chess.
3 
4  Cute Chess is free software: you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation, either version 3 of the License, or
7  (at your option) any later version.
8 
9  Cute Chess is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with Cute Chess. If not, see <http://www.gnu.org/licenses/>.
16 */
17 
18 #ifndef CUTE_CHESS_CORE_APPLICATION_H
19 #define CUTE_CHESS_CORE_APPLICATION_H
20 
21 #include <QCoreApplication>
22 #include <QMessageLogContext>
23 
24 class EngineManager;
25 class GameManager;
26 
28 {
29  Q_OBJECT
30 
31  public:
32  CuteChessCoreApplication(int& argc, char* argv[]);
33  virtual ~CuteChessCoreApplication();
34 
35  QString configPath();
36  EngineManager* engineManager();
37  GameManager* gameManager();
38  static CuteChessCoreApplication* instance();
39 
40  static void messageHandler(QtMsgType type,
41  const QMessageLogContext &context,
42  const QString &message);
43  private:
44  EngineManager* m_engineManager;
45  GameManager* m_gameManager;
46 };
47 
48 #endif // CUTE_CHESS_CORE_APPLICATION_H
Manages chess engines and their configurations.
Definition: enginemanager.h:29
A class for managing chess games and players.
Definition: gamemanager.h:39
Definition: cutechesscoreapp.h:27