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