Source code formating unification
[platform/framework/web/wrt.git] / src / view / common / application_data.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 /**
17  * @file    application_data.h
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  * @version 1.0
20  * @brief   Header file for application_data.h
21  */
22
23 #ifndef APPLICATION_DATA_H_
24 #define APPLICATION_DATA_H_
25
26 #include <memory.h>
27 #include <dpl/singleton.h>
28 #include <bundle.h>
29
30 class ApplicationData
31 {
32   public:
33     bundle* getBundle() const;
34     const char* getEncodedBundle() const;
35     bool setBundle(bundle *originBundle);
36     bool setEncodedBundle(bundle* originBundle);
37     void freeBundle();
38     void freeEncodedBundle();
39
40   private:
41     ApplicationData();
42     ~ApplicationData();
43
44     bundle* m_originBundle;
45     bundle_raw* m_encodedBundle;
46
47     friend class DPL::Singleton<ApplicationData>;
48 };
49
50 typedef DPL::Singleton<ApplicationData> ApplicationDataSingleton;
51
52 #endif /*APPLICATION_DATA_H_*/