summaryrefslogtreecommitdiffstats
path: root/src/core/reporter.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-05 23:19:43 +0200
committerLioncash <mathew1800@gmail.com>2019-07-05 23:45:24 +0200
commit2321656dbe4eba8105b59576ae4ed486ca65918f (patch)
tree5af6678d4ac49cc34875510cd60f3dec53be05c5 /src/core/reporter.h
parentcore/reporter: Remove unnecessary namespace qualifiers (diff)
downloadyuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.gz
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.bz2
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.lz
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.xz
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.zst
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.zip
Diffstat (limited to 'src/core/reporter.h')
-rw-r--r--src/core/reporter.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h
index 9487a11b6..4266ca550 100644
--- a/src/core/reporter.h
+++ b/src/core/reporter.h
@@ -4,7 +4,9 @@
#pragma once
+#include <array>
#include <optional>
+#include <string>
#include <vector>
#include "common/common_types.h"
@@ -16,6 +18,8 @@ class HLERequestContext;
namespace Core {
+class System;
+
class Reporter {
public:
explicit Reporter(System& system);