From 343dfb884fae0d5b58aec277c02f138d9f123cc8 Mon Sep 17 00:00:00 2001 From: forntoh Date: Mon, 16 Sep 2024 23:47:53 +0200 Subject: [PATCH] Remove useless comments --- src/MenuItem.h | 37 +------------------------------------ 1 file changed, 1 insertion(+), 36 deletions(-) diff --git a/src/MenuItem.h b/src/MenuItem.h index fdcda12a..610f89ad 100644 --- a/src/MenuItem.h +++ b/src/MenuItem.h @@ -3,7 +3,7 @@ MIT License - Copyright (c) 2020-2023 Forntoh Thomas + Copyright (c) 2020-2024 Forntoh Thomas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -107,23 +107,6 @@ class MenuItem { }; #define ITEM_BASIC(...) (new MenuItem(__VA_ARGS__)) -/** - * - * # ItemHeader - * - * This item must be present at the all menus collections *(the first item in - * the array)*. - * - * **Example** - * - * ```cpp - * MenuItem mainMenu[] = {ItemHeader(), - * MenuItem("Item 1"), - * MenuItem("Item 2"), - * ... - * ``` - */ - class ItemHeader : public MenuItem { protected: MenuItem** parent = NULL; @@ -148,24 +131,6 @@ class ItemHeader : public MenuItem { } }; -/** - * --- - * - * # ItemFooter - * - * This item must be present at the all menus *(the last item in the array)* - * - * **Example** - * - * ```cpp - * MenuItem mainMenu[] = {ItemHeader(), - * MenuItem("Item 1"), - * MenuItem("Item 2"), - * ... - * ItemFooter()}; - * ``` - */ - class ItemFooter : public MenuItem { public: /**