035b8cdd38902a07882c977fd3169e197ff9451f
[platform/core/test/security-tests.git] / tests / cynara-tests / plugins / single-policy / plugin.cpp
1 /*
2  * Copyright (c) 2015 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        plugin.cpp
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @brief       Implementation of cynara test plugin handling single policy type
20  */
21
22 #include <new>
23
24 #include <cynara-plugin.h>
25 #include <BaseCynaraTestPlugin.h>
26 #include <plugins.h>
27
28 class SinglePolicyPlugin : public BaseCynaraTestPlugin
29 {
30 public:
31     SinglePolicyPlugin() : BaseCynaraTestPlugin(CynaraTestPlugins::SINGLE_POLICY) {}
32     virtual ~SinglePolicyPlugin() {}
33 };
34
35 extern "C" {
36 Cynara::ExternalPluginInterface *create(void) {
37     return new SinglePolicyPlugin();
38 }
39
40 void destroy(Cynara::ExternalPluginInterface *ptr) {
41     delete ptr;
42 }
43 } // extern "C"