#ifndef PLATFORM_UNIX_APPLICATION_H #define PLATFORM_UNIX_APPLICATION_H #include #include #include "X11Input.h" namespace sp { class UnixApplication : public PlatformApplication { public : virtual void init(); virtual void shutdown(); virtual PlatformInput& getInput(); protected : X11Input m_input; }; } // namespace sp #endif /* PLATFORM_UNIX_APPLICATION_H */