00001 #ifndef vidster_menus_h_ 00002 #define vidster_menus_h_ 00003 //-------------------------------------------------------------------------------- 00004 //: 00005 // \file 00006 // \brief the setup for menus for vidster 00007 // This is essentially a namespace for static methods; 00008 // there is no public constructor 00009 // \author 00010 // J.L. Mundy 00011 // 00012 // \verbatim 00013 // Modifications: 00014 // J.L. Mundy October 7, 2002 Initial version. 00015 // \endverbatim 00016 //-------------------------------------------------------------------------------- 00017 #include <vgui/vgui_menu.h> 00018 class vidster_menus 00019 { 00020 public: 00021 static void quit_callback(); 00022 static void set_camera_params_callback(); 00023 static void start_live_video_callback(); 00024 static void stop_live_video_callback(); 00025 static vgui_menu get_menu(); 00026 private: 00027 vidster_menus() {} 00028 }; 00029 00030 #endif // vidster_menus_h_
1.5.5