Fix for 47358
[apps/osp/Gallery.git] / src / GlResourceManager.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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
17 /**
18  * @file                GlResourceManager.cpp
19  * @brief               This is the implementation file for ResourceManager class.
20  */
21
22 #include <FApp.h>
23 #include "GlResourceManager.h"
24
25 using namespace Tizen::App;
26 using namespace Tizen::Base;
27 using namespace Tizen::Graphics;
28
29 Bitmap*
30 ResourceManager::GetBitmapN(const String& id)
31 {
32         AppResource* pAppResource = Application::GetInstance()->GetAppResource();
33         if (pAppResource == null)
34         {
35                 return null;
36         }
37
38         return pAppResource->GetBitmapN(id);
39 }
40
41 String
42 ResourceManager::GetString(const String& id)
43 {
44         AppResource* pAppResource = Application::GetInstance()->GetAppResource();
45         if (pAppResource == null)
46         {
47                 return L"";
48         }
49
50         String str;
51         pAppResource->GetString(id, str);
52
53         return str;
54 }