27 lines
531 B
C
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
|