core: Add Reporter class to take/save reports

This commit is contained in:
Zach Hilman 2019-05-17 21:45:56 -04:00
parent 6f0ee45b5c
commit 2dde8f5cfe
5 changed files with 416 additions and 1 deletions

View file

@ -69,6 +69,7 @@ class Cpu;
class ExclusiveMonitor;
class FrameLimiter;
class PerfStats;
class Reporter;
class TelemetrySession;
struct PerfStatsResults;
@ -290,6 +291,8 @@ public:
const std::map<VAddr, std::string, std::greater<>>& GetRegisteredNSOModules() const;
const Reporter& GetReporter() const;
private:
System();