File: param.h

package info (click to toggle)
kdsoap 2.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,000 kB
  • sloc: cpp: 19,877; python: 63; makefile: 13
file content (47 lines) | stat: -rw-r--r-- 854 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 SPDX-FileCopyrightText: 2005 Tobias Koenig <tokoe@kde.org>

 SPDX-License-Identifier: MIT
*/

#ifndef KWSDL_PARAM_H
#define KWSDL_PARAM_H

#include <QDomElement>
#include <QList>

#include <common/qname.h>
#include <wsdl/element.h>

#include <kode_export.h>

class ParserContext;

namespace KWSDL {

class KWSDL_EXPORT Param : public Element
{
public:
    typedef QList<Param> List;

    Param();
    Param(const QString &nameSpace);
    ~Param();

    void setName(const QString &name);
    QString name() const;

    void setMessage(const QName &message);
    QName message() const;

    void loadXML(ParserContext *context, const QDomElement &element);
    void saveXML(ParserContext *context, const QString &name, QDomDocument &document, QDomElement &parent) const;

private:
    QString mName;
    QName mMessage;
};

}

#endif // KWSDL_PARAM_H