Remove boost dependency
[platform/core/appfw/app-installers.git] / test / smoke_tests / libs / test_category_fail_plugin.cc
1 // Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by an apache 2.0 license that can be
3 // found in the LICENSE file.
4
5 #include <pkgmgr_parser.h>
6
7 #include <glib/glist.h>
8
9 #include "common/plugins/plugin.h"
10 #include "common/utils/glist_range.h"
11
12 extern "C" int PKGMGR_CATEGORY_PARSER_PLUGIN_INSTALL(
13     const char*, const char*, GList*) {
14   return -1;
15 }
16
17 extern "C" int PKGMGR_CATEGORY_PARSER_PLUGIN_UPGRADE(
18     const char*, const char*, GList*) {
19   return -1;
20 }
21
22 extern "C" int PKGMGR_CATEGORY_PARSER_PLUGIN_UNINSTALL(
23     const char*, const char*, GList*) {
24   return -1;
25 }