1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 06:53:52 +00:00

Issue #107: some include clean up

This commit is contained in:
Marc Zinnschlag 2012-08-12 14:07:48 +02:00
parent e0ba7cf952
commit 4ca3cb81d4
2 changed files with 32 additions and 26 deletions

View file

@ -1,4 +1,25 @@
#include "window_manager.hpp" #include "window_manager.hpp"
#include <cassert>
#include <iterator>
#include "MyGUI_UString.h"
#include <openengine/ogre/renderer.hpp>
#include <openengine/gui/manager.hpp>
#include <components/settings/settings.hpp>
#include "../mwbase/environment.hpp"
#include "../mwbase/mechanicsmanager.hpp"
#include "../mwbase/inputmanager.hpp"
#include "../mwworld/ptr.hpp"
#include "../mwworld/cellstore.hpp"
#include "console.hpp"
#include "journalwindow.hpp"
#include "charactercreation.hpp"
#include "text_input.hpp" #include "text_input.hpp"
#include "review.hpp" #include "review.hpp"
#include "dialogue.hpp" #include "dialogue.hpp"
@ -21,22 +42,6 @@
#include "alchemywindow.hpp" #include "alchemywindow.hpp"
#include "spellwindow.hpp" #include "spellwindow.hpp"
#include "../mwbase/environment.hpp"
#include "../mwbase/mechanicsmanager.hpp"
#include "../mwbase/inputmanager.hpp"
#include "../mwworld/ptr.hpp"
#include "../mwworld/cellstore.hpp"
#include "console.hpp"
#include "journalwindow.hpp"
#include "charactercreation.hpp"
#include <components/settings/settings.hpp>
#include <cassert>
#include <iterator>
using namespace MWGui; using namespace MWGui;
WindowManager::WindowManager( WindowManager::WindowManager(

View file

@ -10,12 +10,11 @@
this class. this class.
**/ **/
#include "MyGUI_UString.h" #include <vector>
#include <string>
#include <components/esm_store/store.hpp> #include <components/esm_store/store.hpp>
#include <components/settings/settings.hpp> #include <components/settings/settings.hpp>
#include <openengine/ogre/renderer.hpp>
#include <openengine/gui/manager.hpp>
#include "../mwmechanics/stat.hpp" #include "../mwmechanics/stat.hpp"
@ -23,8 +22,9 @@
namespace MyGUI namespace MyGUI
{ {
class Gui; class Gui;
class Widget; class Widget;
class UString;
} }
namespace Compiler namespace Compiler
@ -38,16 +38,17 @@ namespace MWWorld
class CellStore; class CellStore;
} }
namespace MWMechanics
{
class MechanicsManager;
}
namespace OEngine namespace OEngine
{ {
namespace GUI namespace GUI
{ {
class Layout; class Layout;
class MyGUIManager;
}
namespace Render
{
class OgreRenderer;
} }
} }