diff options
| author | Johannes Schickel | 2015-02-16 00:49:42 +0100 | 
|---|---|---|
| committer | Johannes Schickel | 2015-02-16 01:03:29 +0100 | 
| commit | 627d766325e1d435816648f85dbf9c007269b3f2 (patch) | |
| tree | 795ea66fd2755e81c7d060ee250fd6f53cf20ade /backends/platform/sdl/sdl.h | |
| parent | b00050439f0f602cb54500f7fda268a7589b4c8b (diff) | |
| download | scummvm-rg350-627d766325e1d435816648f85dbf9c007269b3f2.tar.gz scummvm-rg350-627d766325e1d435816648f85dbf9c007269b3f2.tar.bz2 scummvm-rg350-627d766325e1d435816648f85dbf9c007269b3f2.zip | |
SDL: Add basic abstraction class for the SDL window.
Diffstat (limited to 'backends/platform/sdl/sdl.h')
| -rw-r--r-- | backends/platform/sdl/sdl.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h index 5dcc269e55..0f07f6d18d 100644 --- a/backends/platform/sdl/sdl.h +++ b/backends/platform/sdl/sdl.h @@ -29,6 +29,7 @@  #include "backends/mixer/sdl/sdl-mixer.h"  #include "backends/events/sdl/sdl-events.h"  #include "backends/log/log.h" +#include "backends/platform/sdl/sdl-window.h"  #include "common/array.h" @@ -91,6 +92,11 @@ protected:  	 */  	SdlEventSource *_eventSource; +	/** +	 * The SDL output window. +	 */ +	SdlWindow *_window; +  	virtual Common::EventSource *getDefaultEventSource() { return _eventSource; }  	/** | 
