tizen beta release
[platform/framework/web/wrt-plugins-common.git] / src / modules / API / DEPRACATED / Memory / IManager.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 WRTPLUGINS_MEMORY_IMANAGER_H_
17 #define WRTPLUGINS_MEMORY_IMANAGER_H_
18
19 #include <dpl/noncopyable.h>
20
21 namespace WrtPlugins {
22 namespace Api {
23 namespace Memory {
24 class IManager : public DPL::Noncopyable
25 {
26   public:
27     static IManager& getInstance();
28
29   public:
30     virtual ~IManager() = 0;
31
32     /**
33      * Gets total memory.
34      * @return Total memory.
35      * @throw UnsupportedException If not supported by current platform.
36      * @throw PlatformException If platform error occurs.
37      */
38     virtual unsigned long getTotal() const = 0;
39
40     /**
41      * Gets free (available) memory.
42      * @return Free memory.
43      * @throw UnsupportedException If not supported by current platform.
44      * @throw PlatformException If platform error occurs.
45      */
46     virtual unsigned long getFree() const = 0;
47 };
48 } // Memory
49 } // Api
50 } // WrtPlugins
51
52 #endif /* WRTPLUGINS_MEMORY_IMANAGER_H_ */