13 * |
13 * |
14 * You should have received a copy of the GNU Lesser General Public License |
14 * You should have received a copy of the GNU Lesser General Public License |
15 * along with this program. If not, |
15 * along with this program. If not, |
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
17 * |
17 * |
18 * Description: Private implementation of plugin description |
18 * Description: This is a private implementation of a plugin's description. |
19 * |
19 * |
20 */ |
20 */ |
21 |
21 |
22 #include "xqplugininfoprivate.h" |
22 #include "xqplugininfoprivate.h" |
23 |
23 |
|
24 /*! |
|
25 Default constructor. |
|
26 */ |
24 XQPluginInfoPrivate::XQPluginInfoPrivate() |
27 XQPluginInfoPrivate::XQPluginInfoPrivate() |
25 : |
28 : |
26 iUid(), |
29 iUid(), |
27 iVersion(), |
30 iVersion(), |
28 iDllName(), |
31 iDllName(), |
29 iOpaqueData() |
32 iOpaqueData() |
30 { |
33 { |
31 } |
34 } |
32 |
35 |
|
36 /*! |
|
37 Constructor. |
|
38 */ |
33 XQPluginInfoPrivate::XQPluginInfoPrivate( |
39 XQPluginInfoPrivate::XQPluginInfoPrivate( |
34 const XQPluginInfoPrivate &pluginInfoPrivate) |
40 const XQPluginInfoPrivate &pluginInfoPrivate) |
35 : |
41 : |
36 iUid(pluginInfoPrivate.uid()), |
42 iUid(pluginInfoPrivate.uid()), |
37 iVersion(pluginInfoPrivate.version()), |
43 iVersion(pluginInfoPrivate.version()), |
38 iDllName(pluginInfoPrivate.dllName()), |
44 iDllName(pluginInfoPrivate.dllName()), |
39 iOpaqueData(pluginInfoPrivate.opaqueData()) |
45 iOpaqueData(pluginInfoPrivate.opaqueData()) |
40 { |
46 { |
41 } |
47 } |
42 |
48 |
|
49 /*! |
|
50 Constructor. |
|
51 */ |
43 XQPluginInfoPrivate::XQPluginInfoPrivate(quint32 id, |
52 XQPluginInfoPrivate::XQPluginInfoPrivate(quint32 id, |
44 quint32 version, |
53 quint32 version, |
45 const QString &dllName, |
54 const QString &dllName, |
46 const QString &opaqueData) |
55 const QString &opaqueData) |
47 : |
56 : |