aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/webos/webos.h
diff options
context:
space:
mode:
authorKlaus Reimer2011-04-04 00:28:14 +0200
committerMax Horn2011-04-12 11:05:35 +0200
commita4e757834e1ea227c207072868ca732f9872ed59 (patch)
treeb8064c4706a903fbc1b405acfb4437a97e4ed776 /backends/platform/webos/webos.h
parentb17f7d20c28eda883b8c21ad3fedc6619ee04d5d (diff)
downloadscummvm-rg350-a4e757834e1ea227c207072868ca732f9872ed59.tar.gz
scummvm-rg350-a4e757834e1ea227c207072868ca732f9872ed59.tar.bz2
scummvm-rg350-a4e757834e1ea227c207072868ca732f9872ed59.zip
WEBOS: Create webos backend with custom events
Currently only contains test code.
Diffstat (limited to 'backends/platform/webos/webos.h')
-rw-r--r--backends/platform/webos/webos.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/backends/platform/webos/webos.h b/backends/platform/webos/webos.h
new file mode 100644
index 0000000000..be35547131
--- /dev/null
+++ b/backends/platform/webos/webos.h
@@ -0,0 +1,38 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#ifndef PLATFORM_SDL_WEBOS_H
+#define PLATFORM_SDL_WEBOS_H
+
+#include "backends/platform/sdl/posix/posix.h"
+
+class OSystem_SDL_WebOS : public OSystem_POSIX {
+public:
+ OSystem_SDL_WebOS();
+
+ virtual void initBackend();
+};
+
+#endif