00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00025 00026 #ifndef _MENU_ENTRY_H_ 00027 #define _MENU_ENTRY_H_ 00028 00029 #include <string> 00030 00031 namespace GlutWrapper 00032 { 00033 00037 struct MenuEntry 00038 { 00042 MenuEntry(const std::string& name, int option) : m_name(name), m_option(option) 00043 { 00044 } 00045 00047 std::string m_name; 00048 00050 int m_option; 00051 }; 00052 00053 } 00054 00055 #endif