tizen beta release
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / widget_uninstaller_struct.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_uninstaller_struct.h
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for widget installer struct
21  */
22 #ifndef WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
23 #define WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
24
25 //SYSTEM INCLUDES
26 #include <dpl/assert.h>
27
28 //WRT INCLUDES
29 #include <job_base.h>
30 #include <wrt_common_types.h>
31 #include <widget_uninstall/widget_uninstall_errors.h>
32
33 //Widget Uninstaller typedefs
34 typedef void (*UninstallerFinishedCallback)(
35     void *userParam,
36     WidgetHandle,
37     Jobs::WidgetUninstall::Exceptions::Type);
38
39 typedef void (*UninstallerProgressCallback)(
40     void *userParam,
41     ProgressPercent percent,
42     const ProgressDescription &description);
43
44 //UninstallationStruct
45 typedef Jobs::JobCallbacksBase<UninstallerFinishedCallback,
46                                UninstallerProgressCallback>
47 WidgetUninstallationStruct;
48
49 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_