mirror of
https://github.com/overte-org/overte.git
synced 2025-06-21 04:40:12 +02:00
26 lines
623 B
C++
26 lines
623 B
C++
//
|
|
// Created by Amer Cerkic 05/02/2019
|
|
// Copyright 2019 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_LinuxPlatform_h
|
|
#define hifi_LinuxPlatform_h
|
|
|
|
#include "platformInstance.h"
|
|
|
|
namespace platform {
|
|
class LinuxInstance : public Instance {
|
|
|
|
public:
|
|
void enumerateCpu() override;
|
|
void enumerateMemory() override;
|
|
void enumerateGpu() override;
|
|
void enumerateComputer () override;
|
|
};
|
|
|
|
} // namespace platform
|
|
|
|
#endif //hifi_linuxPlaform_h
|