Source code formating unification
[platform/framework/web/wrt.git] / src / domain / widget_deserialize_model.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    widget_deserialize_model.h
18  * @author  Piotr Marcinkiewicz (p.marcinkiew@samsung.com)
19  * @version 1.0
20  * @brief   Widget deserialization creates WidgetModel from WidgetDAO
21  */
22 #ifndef WRT_ENGINE_SRC_DOMAIN_WIDGET_DESERIALIZE_MODEL_H_
23 #define WRT_ENGINE_SRC_DOMAIN_WIDGET_DESERIALIZE_MODEL_H_
24
25 #include <memory>
26 #include <string>
27 #include <widget_model.h>
28 #include <dpl/wrt-dao-ro/wrt_db_types.h>
29
30 namespace Domain {
31 /**
32  * @brief Creates widget model associated with selected
33  * @param[in] tizenId
34  * @retval WidgetModel
35  */
36 std::shared_ptr<WidgetModel> deserializeWidgetModel(const std::string& tizenId);
37 } //Namespace Domain
38
39 #endif // ifndef WRT_ENGINE_SRC_DOMAIN_WIDGET_DESERIALIZE_MODEL_H_
40