~gunchleoc/widelands/bug-1818494-ingame-zoom-freezes

7054 by Holger Rapp
Unifiy the style of the include guards and add a style rule to keep it that way.
1
/*
8988.1.1 by GunChleoc
Update copyright year to 2019
2
 * Copyright (C) 2006-2019 by the Widelands Development Team
7054 by Holger Rapp
Unifiy the style of the include guards and add a style rule to keep it that way.
3
 *
4
 * This program is free software; you can redistribute it and/or
5
 * modify it under the terms of the GNU General Public License
6
 * as published by the Free Software Foundation; either version 2
7
 * of the License, or (at your option) any later version.
8
 *
9
 * This program 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 this program; if not, write to the Free Software
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
 *
18
 */
19
20
#ifndef WL_BUILD_INFO_H
21
#define WL_BUILD_INFO_H
22
3959 by bedouin
- Implement feature request #2782462: "Add buildtype and OS reminder to crash
23
#include <string>
24
7254.1.1 by fios at foramnagaidhlig
Refactored the main menu and added an "Authors" button.
25
constexpr uint16_t kWidelandsCopyrightStart = 2002;
8265 by Wideland's Bunnybot
Merged lp:~widelands-dev/widelands/bug-1658616-inputqueue-build19.
26
// If the following line is changed, the corresponding regex in 'utils/update_copyright.py' will
27
// also need updating.
8988.1.1 by GunChleoc
Update copyright year to 2019
28
constexpr uint16_t kWidelandsCopyrightEnd = 2019;
7254.1.1 by fios at foramnagaidhlig
Refactored the main menu and added an "Authors" button.
29
8394.1.11 by Holger Rapp
Addressed reviewer comments.
30
/// \return the build id which is automagically created from the revision number
31
/// or the VERSION file
8048 by GunChleoc
Ran clang-format.
32
const std::string& build_id();
3959 by bedouin
- Implement feature request #2782462: "Add buildtype and OS reminder to crash
33
8392.1.4 by Holger Rapp
Now really fix all codecheck issues.
34
/// \return the build type, which is set during compile time (either manually
8048 by GunChleoc
Ran clang-format.
35
/// or to a default value)
36
const std::string& build_type();
3959 by bedouin
- Implement feature request #2782462: "Add buildtype and OS reminder to crash
37
7054 by Holger Rapp
Unifiy the style of the include guards and add a style rule to keep it that way.
38
#endif  // end of include guard: WL_BUILD_INFO_H