aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab')
-rw-r--r--src/game_tab/Game.hpp4
-rw-r--r--src/game_tab/GameTab.hpp2
-rw-r--r--src/game_tab/HalfMove.hpp1
3 files changed, 4 insertions, 3 deletions
diff --git a/src/game_tab/Game.hpp b/src/game_tab/Game.hpp
index 94f49fc..e5742bc 100644
--- a/src/game_tab/Game.hpp
+++ b/src/game_tab/Game.hpp
@@ -6,8 +6,8 @@
#include <unordered_map>
/**
- * @brief Hold an entire chess game
- * Used in many places in the projects.
+ * @brief Hold an entire chess game. Used in many places in the projects.
+ * @ingroup game
*/
class Game {
/// @brief 64 char string that contains all the pieces on the board (used in BoardCanvas)
diff --git a/src/game_tab/GameTab.hpp b/src/game_tab/GameTab.hpp
index 9986905..28e9d27 100644
--- a/src/game_tab/GameTab.hpp
+++ b/src/game_tab/GameTab.hpp
@@ -17,7 +17,7 @@ wxDECLARE_EVENT(SHOW_ENGINE_EVALUATION, wxCommandEvent);
/**
* @brief Main tab for opened games. Contains GameTabLeftPanel and GameTabRightPanel.
- *
+ * @ingroup tabs
*/
class GameTab : public wxPanel, public TabInfos {
GameTabRightPanel *editor_panel;
diff --git a/src/game_tab/HalfMove.hpp b/src/game_tab/HalfMove.hpp
index 36b9888..fa9b5a5 100644
--- a/src/game_tab/HalfMove.hpp
+++ b/src/game_tab/HalfMove.hpp
@@ -8,6 +8,7 @@
/**
* @brief This class extends CGEHalfMove (to be displayed in the game editor)
+ * @ingroup game
*/
class HalfMove : public CMI::HalfMove {
std::string fen;