]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/display.h
Move struct VideoMode to its own header
[libs/gui.git] / source / graphics / display.h
index d311ba73c75f36ded3fe02e0401518638e88d2e2..370bf0dea81013c03d2212ae77e2cfabd9cb7981 100644 (file)
@@ -4,31 +4,13 @@
 #include <list>
 #include <stdexcept>
 #include <string>
+#include "videomode.h"
 
 namespace Msp {
 namespace Graphics {
 
 class Window;
 
-struct VideoMode
-{
-       unsigned width;
-       unsigned height;
-       unsigned rate;
-
-       VideoMode(): width(0), height(0), rate(0) { }
-       VideoMode(unsigned w, unsigned h): width(w), height(h), rate(0) { }
-};
-
-
-class unsupported_video_mode: public std::runtime_error
-{
-public:
-       unsupported_video_mode(const VideoMode &);
-       virtual ~unsupported_video_mode() throw () { }
-};
-
-
 class Display
 {
 public: