dd2b4df99b09cbf6cafc0a14a0d3b9113cebeb7d
[platform/upstream/dbus.git] / qt / qdbusutil.h
1 /* -*- C++ -*-
2  *
3  * Copyright (C) 2006 Trolltech AS. All rights reserved.
4  *    Author: Thiago Macieira <thiago.macieira@trolltech.com>
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  */
23
24 #ifndef QDBUSUTIL_H
25 #define QDBUSUTIL_H
26
27 #include <QtCore/qstring.h>
28 #include <QtCore/qvariant.h>
29
30 #include "qdbusmacros.h"
31
32 namespace QDBusUtil
33 {
34     QDBUS_EXPORT bool isValidInterfaceName(const QString &ifaceName);
35
36     QDBUS_EXPORT bool isValidUniqueConnectionName(const QString &busName);
37
38     QDBUS_EXPORT bool isValidBusName(const QString &busName);
39
40     QDBUS_EXPORT bool isValidMemberName(const QString &memberName);
41
42     QDBUS_EXPORT bool isValidErrorName(const QString &errorName);
43
44     QDBUS_EXPORT bool isValidObjectPath(const QString &path);
45
46     QDBUS_EXPORT bool isValidSignature(const QString &signature);
47
48     QDBUS_EXPORT bool isValidSingleSignature(const QString &signature);
49
50     QDBUS_EXPORT QVariant::Type signatureToType(const QString &signature);
51
52     QDBUS_EXPORT const char *typeToSignature(QVariant::Type type);
53 }
54
55 #endif