Overte C++ Documentation
WINPlatform.h
1 //
2 // Created by Amer Cerkic 05/02/2019
3 // Copyright 2019 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 
9 #ifndef hifi_WinPlatform_h
10 #define hifi_WinPlatform_h
11 
12 #include "PlatformInstance.h"
13 
14 namespace platform {
15  class WINInstance : public Instance {
16 
17  public:
18  void enumerateCpus() override;
19  void enumerateGpusAndDisplays() override;
20  void enumerateMemory() override;
21  void enumerateComputer () override;
22  void enumerateNics() override;
23  void enumerateGraphicsApis() override;
24  };
25 } // namespace platform
26 
27 #endif //hifi_winplatform_h