]> git.tdb.fi Git - libs/gui.git/blobdiff - source/gbase/simplewindow.cpp
Consistently label the graphics part as graphics
[libs/gui.git] / source / gbase / simplewindow.cpp
diff --git a/source/gbase/simplewindow.cpp b/source/gbase/simplewindow.cpp
deleted file mode 100644 (file)
index c782bab..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "simplewindow.h"
-
-namespace Msp {
-namespace Graphics {
-
-SimpleWindow::SimpleWindow(unsigned w, unsigned h, bool fs):
-       Window(dpy, w, h, fs)
-{ }
-
-void SimpleWindow::tick()
-{
-       dpy.tick();
-}
-
-
-SimpleGLWindow::SimpleGLWindow(unsigned w, unsigned h, bool fs):
-       SimpleWindow(w, h, fs),
-       gl_ctx(*this)
-{ }
-
-void SimpleGLWindow::swap_buffers()
-{
-       gl_ctx.swap_buffers();
-}
-
-} // namespace Graphics
-} // namespace Msp