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
|
/*
SPDX-FileCopyrightText: 2005 Tobias Koenig <tokoe@kde.org>
SPDX-License-Identifier: MIT
*/
#ifndef KWSDL_TYPE_H
#define KWSDL_TYPE_H
#include <qdom.h>
#include <schema/types.h>
#include <wsdl/element.h>
#include <kode_export.h>
class ParserContext;
namespace KWSDL {
class KWSDL_EXPORT Type : public Element
{
public:
Type();
Type(const QString &nameSpace);
~Type();
void setTypes(const XSD::Types &types);
XSD::Types types() const;
bool loadXML(ParserContext *context, const QDomElement &element);
void saveXML(ParserContext *context, QDomDocument &document, QDomElement &parent) const;
private:
XSD::Types mTypes;
};
}
#endif // KWSDL_TYPE_H
|