Vicar release 0.6-1 (a.k.a I'm still here release)
[vicar] / src / vicar-telepathy / src / connectionmanagertypes.cpp
1 /*
2 @version: 0.6
3 @author: Sudheer K. <scifi1947 at gmail.com>
4 @license: GNU General Public License
5
6 Based on QtTelepathy with copyright notice below.
7 */
8
9 /*
10  * QtTelepathy, the Tapioca Qt4 Telepathy Client Library
11  * Copyright (C) 2006 by INdT
12  *  @author Andre Moreira Magalhaes <andre.magalhaes@indt.org>
13  *
14  * This library is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU Lesser General Public
16  * License as published by the Free Software Foundation; either
17  * version 2.1 of the License, or (at your option) any later version.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27  */
28
29 #include "connectionmanagertypes.h"
30
31 using namespace org::freedesktop::Telepathy;
32
33 const QDBusArgument &operator>>(const QDBusArgument &argument, ParameterDefinition &param)
34 {
35     argument.beginStructure();
36     argument >> param.name >> param.flags >> param.signature >> param.defaultValue;
37     argument.endStructure();
38     return argument;
39 }
40
41 QDBusArgument &operator<<(QDBusArgument &argument, const ParameterDefinition &param)
42 {
43     argument.beginStructure();
44     argument << param.name << param.flags << param.signature << param.defaultValue;
45     argument.endStructure();
46     return argument;
47 }
48