diff options
author | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 |
commit | 15740faf9fe9fe4be08965098bbf2947e096aeeb (patch) | |
tree | a730ec236656cc8cab5b13f088adfaed6bb218fb /Runtime/Utilities/ReportHardware.h |
Diffstat (limited to 'Runtime/Utilities/ReportHardware.h')
-rw-r--r-- | Runtime/Utilities/ReportHardware.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Runtime/Utilities/ReportHardware.h b/Runtime/Utilities/ReportHardware.h new file mode 100644 index 0000000..2943869 --- /dev/null +++ b/Runtime/Utilities/ReportHardware.h @@ -0,0 +1,19 @@ +#ifndef __REPORT_HARDWARE_H +#define __REPORT_HARDWARE_H + +class WWW; + + +class HardwareInfoReporter { +public: + HardwareInfoReporter() : m_InfoPost(NULL) { }; + + void ReportHardwareInfo(); + void Shutdown(); + +private: + WWW* m_InfoPost; +}; + + +#endif |