1e86f295bcc17a5e83613cbf24afcd12abf03e94
[platform/core/appfw/app-installers.git] / test / smoke_tests / libs / test_metadata_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 <boost/optional/optional.hpp>
6
7 #include <pkgmgr_parser.h>
8
9 #include <glib/glist.h>
10
11 #include <cstring>
12 #include <string>
13 #include <tuple>
14
15 #include "common/plugins/plugin.h"
16 #include "common/utils/glist_range.h"
17
18 extern "C" int PKGMGR_MDPARSER_PLUGIN_INSTALL(
19     const char*, const char*, GList*) {
20   return -1;
21 }
22
23 extern "C" int PKGMGR_MDPARSER_PLUGIN_UPGRADE(
24     const char*, const char*, GList*) {
25   return -1;
26 }
27
28 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNINSTALL(
29     const char*, const char*, GList*) {
30   return -1;
31 }