]> git.tdb.fi Git - libs/gui.git/blob - source/input/generic/touchscreen.cpp
Add an availability check to Touchscreen
[libs/gui.git] / source / input / generic / touchscreen.cpp
1 #include "touchscreen.h"
2
3 namespace Msp {
4 namespace Input {
5
6 bool Touchscreen::is_available()
7 {
8         return false;
9 }
10
11 void Touchscreen::input_event(const Graphics::Window::Event &)
12 {
13 }
14
15 } // namespace Input
16 } // namespace Msp