blob: a6da29f3d4574bdd7bc729559ec05a9eda3aef2e [file] [log] [blame]
henrikg@webrtc.orgc58ef082011-11-08 08:44:17 +00001/*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_
12#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_
13
14#include "typedefs.h"
15
16namespace webrtc {
17class CpuInfo
18{
19public:
20 static WebRtc_UWord32 DetectNumberOfCores();
21
22private:
23 CpuInfo() {}
24 static WebRtc_UWord32 _numberOfCores;
25};
26} // namespace webrtc
27#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_