CodeLibrary/08_Clion_Cplus_MultiLevelMenu_20240610/mashiroui.h
JRNitre b01d9fbda0 追加了好多 Cplus 项目...
删除了一些不明所以的 Cplus 项目
2024-06-15 00:06:15 +08:00

27 lines
531 B
C++

#ifndef INC_08_CLION_CPLUS_MULTILEVELMENU_20240610_MASHIROUI_H
#define INC_08_CLION_CPLUS_MULTILEVELMENU_20240610_MASHIROUI_H
#include <iostream>
#include "function.h"
struct menu_table {
int length;
// 表项标题
std::string table_title;
// 父表项
menu_table* parent_table;
// 子表项
menu_table* sub_table;
// 功能体函数
void(*function)();
};
extern menu_table main_menu [];
extern menu_table fun_01_menu [];
#endif //INC_08_CLION_CPLUS_MULTILEVELMENU_20240610_MASHIROUI_H