summaryrefslogtreecommitdiff
path: root/kms++/src/mappedframebuffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kms++/src/mappedframebuffer.cpp')
-rw-r--r--kms++/src/mappedframebuffer.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/kms++/src/mappedframebuffer.cpp b/kms++/src/mappedframebuffer.cpp
deleted file mode 100644
index 21e082f..0000000
--- a/kms++/src/mappedframebuffer.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <kms++/kms++.h>
-
-using namespace std;
-
-namespace kms
-{
-
-MappedFramebuffer::MappedFramebuffer(Card& card, uint32_t id)
- : Framebuffer(card, id)
-{
-
-}
-
-MappedFramebuffer::MappedFramebuffer(Card& card, uint32_t width, uint32_t height)
- : Framebuffer(card, width, height)
-{
-
-}
-
-}