mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-14 15:02:50 +03:00
Added `find_missing_includes.py` that checks if all the header files of each module in the "general" module includes are included. With this I udpated the pending includes in the modules.
25 lines
774 B
C++
25 lines
774 B
C++
#ifndef EEPP_WINDOW_HPP
|
|
#define EEPP_WINDOW_HPP
|
|
|
|
#include <eepp/window/base.hpp>
|
|
#include <eepp/window/clipboard.hpp>
|
|
#include <eepp/window/cursor.hpp>
|
|
#include <eepp/window/cursormanager.hpp>
|
|
#include <eepp/window/displaymanager.hpp>
|
|
#include <eepp/window/engine.hpp>
|
|
#include <eepp/window/input.hpp>
|
|
#include <eepp/window/inputevent.hpp>
|
|
#include <eepp/window/inputfinger.hpp>
|
|
#include <eepp/window/inputmethod.hpp>
|
|
#include <eepp/window/joycodes.hpp>
|
|
#include <eepp/window/joystick.hpp>
|
|
#include <eepp/window/joystickmanager.hpp>
|
|
#include <eepp/window/keycodes.hpp>
|
|
#include <eepp/window/platformhelper.hpp>
|
|
#include <eepp/window/platformimpl.hpp>
|
|
#include <eepp/window/window.hpp>
|
|
#include <eepp/window/windowcontext.hpp>
|
|
#include <eepp/window/windowhandle.hpp>
|
|
|
|
#endif
|