Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/qt_gui/gui_video.h @ 7481

Last change on this file since 7481 was 7481, checked in by bensch, 18 years ago

compiles again

File size: 467 bytes
Line 
1/*!
2  \file gui_video.h
3  \brief File that holds the class that creates the Video-Options.
4*/
5#ifndef _GUI_VIDEO_H
6#define _GUI_VIDEO_H
7
8#include "gui_element.h"
9#include <vector>
10#include <string>
11
12namespace OrxGui
13{
14  //! Class that creates the Video-Options.
15  class GuiVideo : public GuiElement
16  {
17  public:
18    GuiVideo();
19    virtual ~GuiVideo();
20
21  private:
22    void getResolutions(std::vector<std::string>& resolutionList);
23  };
24}
25
26#endif /* _GUI_VIDEO_H */
Note: See TracBrowser for help on using the repository browser.