Merge pull request #4121 from FearlessTobi/port-894

Port #894 from yuzu: "kernel: Move object class to its own source files"
This commit is contained in:
Merry
2018-08-26 00:02:33 +01:00
committed by GitHub
30 changed files with 172 additions and 144 deletions

View File

@@ -10,10 +10,9 @@
#include <string>
#include <unordered_map>
#include <boost/container/flat_map.hpp>
#include "common/bit_field.h"
#include "common/common_types.h"
#include "core/hle/kernel/hle_ipc.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/object.h"
#include "core/hle/service/sm/sm.h"
////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@@ -4,9 +4,11 @@
#pragma once
#include <memory>
#include <string>
#include <unordered_map>
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/object.h"
#include "core/hle/result.h"
#include "core/hle/service/service.h"