summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-05-17 21:45:56 -0400
committerGravatar Zach Hilman2019-05-25 16:09:20 -0400
commit2dde8f5cfe81648d05d60285ab5b17a6f61c486e (patch)
tree7d9c44658779ad92d66c54069ec1a3fa4d437aed /src/core/core.h
parentqt: Make UI option for 'Reporting Services' temporary (diff)
downloadyuzu-2dde8f5cfe81648d05d60285ab5b17a6f61c486e.tar.gz
yuzu-2dde8f5cfe81648d05d60285ab5b17a6f61c486e.tar.xz
yuzu-2dde8f5cfe81648d05d60285ab5b17a6f61c486e.zip
core: Add Reporter class to take/save reports
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 10542ba21..440cdbbf0 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -69,6 +69,7 @@ class Cpu;
69class ExclusiveMonitor; 69class ExclusiveMonitor;
70class FrameLimiter; 70class FrameLimiter;
71class PerfStats; 71class PerfStats;
72class Reporter;
72class TelemetrySession; 73class TelemetrySession;
73 74
74struct PerfStatsResults; 75struct PerfStatsResults;
@@ -290,6 +291,8 @@ public:
290 291
291 const std::map<VAddr, std::string, std::greater<>>& GetRegisteredNSOModules() const; 292 const std::map<VAddr, std::string, std::greater<>>& GetRegisteredNSOModules() const;
292 293
294 const Reporter& GetReporter() const;
295
293private: 296private:
294 System(); 297 System();
295 298