ac48fc93ec3d0d440ae85a2f54f56927a3e83f9a
[chessclock] / classes / timecontrol / fischeraftertimecontrol.h
1  /**************************************************************************
2
3     Chess Clock
4
5     Copyright (c) Arto Hyvättinen 2010
6
7     This file is part of Chess Clock software.
8
9     Chess Clock is free software: you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation, either version 3 of the License, or
12     (at your option) any later version.
13
14     Chess Clock is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19
20 **************************************************************************/
21
22 #ifndef FISCHERAFTERTIMECONTROL_H
23 #define FISCHERAFTERTIMECONTROL_H
24
25 #include "../timecontrol.h"
26 #include <QApplication>
27
28 class FischerAfterTimeControl : public TimeControl
29 {
30 public:
31     FischerAfterTimeControl();
32
33     QString getName() { return qApp->translate("FischerAfter","Addition after"); }
34     QString getDescription();
35     ClocksWidget* initGame( bool useLastSettings);
36
37 };
38
39 #endif // FISCHERAFTERTIMECONTROL_H