Core: Cleanup core includes.

This commit is contained in:
Emmanuel Gil Peyrot 2015-06-21 15:11:32 +01:00
parent 45c4781544
commit aea15f5c73
9 changed files with 16 additions and 15 deletions

View File

@ -33,10 +33,11 @@
#include <set>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>
#include "common/assert.h"
#include "common/common_types.h"
#include "common/file_util.h"
#include "common/logging/log.h"
template <class T>

View File

@ -10,6 +10,11 @@
#include "core/arm/arm_interface.h"
#include "core/arm/skyeye_common/armdefs.h"
#include "core/arm/skyeye_common/arm_regformat.h"
namespace Core {
struct ThreadContext;
}
class ARM_DynCom final : virtual public ARM_Interface {
public:

View File

@ -2,15 +2,12 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/core.h"
#include "core/core_timing.h"
#include "core/settings.h"
#include "core/arm/arm_interface.h"
#include "core/arm/disassembler/arm_disasm.h"
#include "core/arm/dyncom/arm_dyncom.h"
#include "core/hle/hle.h"
#include "core/hle/kernel/thread.h"

View File

@ -3,12 +3,11 @@
// Refer to the license.txt file included.
#include <atomic>
#include <cstdio>
#include <mutex>
#include <vector>
#include "common/assert.h"
#include "common/chunk_file.h"
#include "common/logging/log.h"
#include "common/string_util.h"
#include "core/arm/arm_interface.h"

View File

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <iterator>
#include "common/assert.h"
#include "core/hle/kernel/vm_manager.h"

View File

@ -6,7 +6,6 @@
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "common/common_types.h"

View File

@ -4,12 +4,6 @@
#include <cstring>
#include "common/common_types.h"
#include "common/common_funcs.h"
#include "core/core.h"
#include "core/memory.h"
#include "core/hle/config_mem.h"
#include "core/hle/shared_page.h"
////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -10,9 +10,12 @@
* write access, according to 3dbrew; this is not emulated)
*/
#include "common/common_funcs.h"
#include "common/common_types.h"
#include "common/swap.h"
#include "core/memory.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace SharedPage {

View File

@ -3,13 +3,14 @@
// Refer to the license.txt file included.
#include <map>
#include <memory>
#include <utility>
#include <vector>
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/hle/config_mem.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/shared_memory.h"
#include "core/hle/kernel/vm_manager.h"
#include "core/hle/result.h"
#include "core/hle/shared_page.h"