tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Cpu / Manager.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 #ifndef WRTDEVICEAPIS_CPU_MANAGER_H_
17 #define WRTDEVICEAPIS_CPU_MANAGER_H_
18
19 #include <cstddef>
20 #include <map>
21 #include <Cpu/IManager.h>
22 #include "Unit.h"
23
24 namespace WrtDeviceApis {
25 namespace Cpu {
26
27 class Manager : public Api::IManager
28 {
29   public:
30     static Manager& getInstance();
31
32   public:
33     Api::IUnit* getUnit(std::size_t index) const;
34     std::size_t getUnitsCount() const;
35
36   private:
37     typedef std::map<std::size_t, Api::IUnit*> Units;
38
39   private:
40     Manager();
41
42   private:
43     mutable Units m_units;
44 };
45
46 } // Cpu
47 } // WrtDeviceApis
48
49 #endif // WRTDEVICEAPIS_CPU_MANAGER_H_