Release version 0.6-2
[vicar] / src / vicar-lib / src / connectioninterfacerequeststypes.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 "connectioninterfacerequeststypes.h"
30
31 using namespace org::freedesktop::Telepathy;
32
33 const QDBusArgument &operator>>(const QDBusArgument &argument, ChannelDetails &val)
34 {
35     argument.beginStructure();
36     argument >> val.channel >> val.properties;
37     argument.endStructure();
38     return argument;
39 }
40
41 QDBusArgument &operator<<(QDBusArgument &argument, const ChannelDetails &val)
42 {
43     argument.beginStructure();
44     argument << val.channel << val.properties;
45     argument.endStructure();
46     return argument;
47 }
48
49 QDebug &operator<<(QDebug arg,const ChannelDetails &val)
50 {
51     arg.space() << "[" << val.channel.path() << "," << val.properties <<"]";
52     return arg.space();
53 }
54
55 const QDBusArgument &operator>>(const QDBusArgument &argument, RequestableChannelClass &val)
56 {
57     argument.beginStructure();
58     argument >> val.fixedProperties >> val.allowedProperties;
59     argument.endStructure();
60     return argument;
61 }
62
63 QDBusArgument &operator<<(QDBusArgument &argument, const RequestableChannelClass &val)
64 {
65     argument.beginStructure();
66     argument << val.fixedProperties << val.allowedProperties;
67     argument.endStructure();
68     return argument;
69 }
70
71 QDebug &operator<<(QDebug arg,const RequestableChannelClass &val)
72 {
73     arg.space() << "[" << val.fixedProperties << "," << val.allowedProperties <<"]";
74     return arg.space();
75 }