Added API for enabling tethering
[profile/ivi/settings-daemon.git] / lib / plugin.cpp
1 /**
2  * @file settings_plugin.cpp
3  *
4  * @brief Settings plugin implementation.
5  *
6  * The @c settingsd::settings_plugin abstract base class destructor is
7  * found in this source file.  It is defined out-of-line to address
8  * RTTI related issues that occur when both a virtual destructor is
9  * in-lined and g++ symbol visibility is enabled.
10  *
11  * @author Ossama Othman @<ossama.othman@@intel.com@>
12  *
13  * @copyright @par
14  * Copyright 2012, 2013 Intel Corporation All Rights Reserved.
15  * @par
16  * This library is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU Lesser General Public
18  * License as published by the Free Software Foundation;
19  * version 2.1 of the License.
20  * @par
21  * This library is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24  * Lesser General Public License for more details.
25  * @par
26  * You should have received a copy of the GNU Lesser General Public
27  * License along with this library; if not, write to the Free Software
28  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
29  * Boston, MA  02110-1301  USA
30  */
31
32
33 #include <settingsd/plugin.hpp>
34
35
36 ivi::settings::plugin::~plugin()
37 {
38   /**
39    * @note This destructor is intentionally defined out-of-line to
40    *       address RTTI related issues that occur when both a virtual
41    *       destructor is in-lined and g++ symbol visibility is
42    *       enabled.
43    */
44 }
45
46
47 // Local Variables:
48 // mode:c++
49 // c-basic-offset:2
50 // indent-tabs-mode: nil
51 // End: