KD SOAP  1.10.0
KDSoapEndpointReference.h
1 /****************************************************************************
2 **
3 ** This file is part of the KD Soap library.
4 **
5 ** SPDX-FileCopyrightText: 2015-2020 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
6 **
7 ** SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDAB-KDSoap OR LicenseRef-KDAB-KDSoap-US
8 **
9 ** Licensees holding valid commercial KD Soap licenses may use this file in
10 ** accordance with the KD Soap Commercial License Agreement provided with
11 ** the Software.
12 **
13 ** Contact info@kdab.com if any conditions of this licensing are not clear to you.
14 **
15 ****************************************************************************/
16 
17 #ifndef KDSOAPENDPOINTREFERENCE_H
18 #define KDSOAPENDPOINTREFERENCE_H
19 
20 #include "KDSoapGlobal.h"
21 #include "KDSoapValue.h"
22 #include <QString>
23 #include <QSharedDataPointer>
24 
25 class KDSoapEndpointReferenceData;
33 class KDSOAP_EXPORT KDSoapEndpointReference
34 {
35 public:
36 
41  explicit KDSoapEndpointReference(const QString &address = QString());
42 
47 
51  KDSoapEndpointReference &operator =(const KDSoapEndpointReference &other);
52 
57 
61  QString address() const;
62 
67  void setAddress(const QString &address);
68 
73  KDSoapValueList referenceParameters() const;
74 
78  void setReferenceParameters(const KDSoapValueList &referenceParameters);
79 
84  KDSoapValueList metadata() const;
85 
89  void setMetadata(const KDSoapValueList &metadata);
90 
94  bool isEmpty() const;
95 
96 private:
97  QSharedDataPointer<KDSoapEndpointReferenceData> d;
98 };
99 
100 #endif // KDSOAPENDPOINTREFERENCE_H
101 
Definition: KDSoapEndpointReference.h:33
Definition: KDSoapValue.h:330

Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/
https://www.kdab.com/development-resources/qt-tools/kd-soap/