Merge the changes to the bindings from the KDE Subversion server.
[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
29 #include "qdbusmacros.h"
30
31 namespace QDBusUtil
32 {
33     bool isValidInterfaceName(const QString &ifaceName) QDBUS_EXPORT;
34
35     bool isValidUniqueConnectionName(const QString &busName) QDBUS_EXPORT;
36
37     bool isValidBusName(const QString &busName) QDBUS_EXPORT;
38
39     bool isValidMemberName(const QString &memberName) QDBUS_EXPORT;
40
41     bool isValidErrorName(const QString &errorName) QDBUS_EXPORT;
42
43     bool isValidObjectPath(const QString &path) QDBUS_EXPORT;
44
45     bool isValidSignature(const QString &signature) QDBUS_EXPORT;
46
47     bool isValidSingleSignature(const QString &signature) QDBUS_EXPORT;
48 }
49
50 #endif