Overte C++ Documentation
AndroidPlatform.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_AndroidPlatform_h
10 #define hifi_AndroidPlatform_h
11 
12 #include "PlatformInstance.h"
13 
14 namespace platform {
15  class AndroidInstance : public Instance {
16 
17  public:
18  void enumerateCpus() override;
19  void enumerateGpusAndDisplays() override;
20  void enumerateMemory() override;
21  void enumerateComputer() override;
22  };
23 
24 } // namespace platform
25 
26 #endif //hifi_androidplatform_h