|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU Lesser General Public License as published by |
|
7 * the Free Software Foundation, version 2.1 of the License. |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, |
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 * GNU Lesser General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU Lesser General Public License |
|
15 * along with this program. If not, |
|
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
|
17 * |
|
18 * Description: |
|
19 * |
|
20 */ |
|
21 |
|
22 #ifndef XQSFWINTERFACE_H_ |
|
23 #define XQSFWINTERFACE_H_ |
|
24 |
|
25 #include <QString> |
|
26 #include <QList> |
|
27 #include <QStringList> |
|
28 #include "xqqserviceglobal.h" |
|
29 |
|
30 QT_BEGIN_NAMESPACE |
|
31 |
|
32 class Q_SFW_EXPORT SFWInterface |
|
33 { |
|
34 public: |
|
35 |
|
36 SFWInterface(const QString& anInterfaceName); |
|
37 SFWInterface(const SFWInterface& other); |
|
38 virtual ~SFWInterface(); |
|
39 |
|
40 SFWInterface &operator=(const SFWInterface&other); |
|
41 |
|
42 QString name() const; |
|
43 QString service() const; |
|
44 QString description() const; |
|
45 QStringList capabilities() const; |
|
46 QString version() const; |
|
47 |
|
48 void setDescription(const QString& aDescription); |
|
49 void setCapabilities(const QList<QString>& capabilities); |
|
50 void setVersion(const QString& version); |
|
51 void setVersion(int maj = 1, int min = 0); |
|
52 void setService(const QString &service); |
|
53 |
|
54 private: |
|
55 QString interfaceName; |
|
56 QString interfaceDescription; |
|
57 QStringList interfaceCapabilities; |
|
58 QString interfaceVersion; |
|
59 QString serviceName; |
|
60 }; |
|
61 |
|
62 QT_END_NAMESPACE |
|
63 |
|
64 #endif /*XQSFWINTERFACE_H_*/ |