diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-17 00:41:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-17 00:41:13 +0300 |
commit | 9a85b675f326c956b2c87af296c724a68192d7cc (patch) | |
tree | abe0fcd97cdc39e9e31daeda29e12b92acc97ee8 /src/gui/base/gui.hpp | |
parent | e78036b3372e5773fac4207ea48bb61e2fd7873e (diff) | |
download | plus-9a85b675f326c956b2c87af296c724a68192d7cc.tar.gz plus-9a85b675f326c956b2c87af296c724a68192d7cc.tar.bz2 plus-9a85b675f326c956b2c87af296c724a68192d7cc.tar.xz plus-9a85b675f326c956b2c87af296c724a68192d7cc.zip |
combine input into one file.
Diffstat (limited to 'src/gui/base/gui.hpp')
-rw-r--r-- | src/gui/base/gui.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/base/gui.hpp b/src/gui/base/gui.hpp index 2ec5d7082..6e6a3867d 100644 --- a/src/gui/base/gui.hpp +++ b/src/gui/base/gui.hpp @@ -74,11 +74,11 @@ class Graphics; class KeyListener; +class SDLInput; namespace gcn { class FocusHandler; - class Input; class Widget; // The following comment will appear in the doxygen main page. @@ -178,7 +178,7 @@ namespace gcn * SDLInput * @since 0.1.0 */ - virtual void setInput(Input* input); + virtual void setInput(SDLInput* input); /** * Gets the input object being used for input handling. @@ -189,7 +189,7 @@ namespace gcn * SDLInput * @since 0.1.0 */ - virtual Input* getInput() const A_WARN_UNUSED; + virtual SDLInput* getInput() const A_WARN_UNUSED; /** * Performs logic of the GUI. By calling this function all logic @@ -418,7 +418,7 @@ namespace gcn /** * Holds the input implementation used. */ - Input* mInput; + SDLInput* mInput; /** * Holds the focus handler for the Gui. |