Remove boost dependency
[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 <glib.h>
6
7 extern "C" int PKGMGR_MDPARSER_PLUGIN_INSTALL(
8     const char*, const char*, GList*) {
9   return -1;
10 }
11
12 extern "C" int PKGMGR_MDPARSER_PLUGIN_UPGRADE(
13     const char*, const char*, GList*) {
14   return -1;
15 }
16
17 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNINSTALL(
18     const char*, const char*, GList*) {
19   return -1;
20 }