File: group.h

package info (click to toggle)
kdsoap 1.9.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,564 kB
  • sloc: cpp: 18,969; python: 438; sh: 281; makefile: 8
file content (42 lines) | stat: -rw-r--r-- 709 bytes parent folder | download | duplicates (2)
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
#ifndef GROUP_H
#define GROUP_H

#include <schema/xmlelement.h>
#include <schema/element.h>
#include <common/qname.h>
#include <qdebug.h>

#include <kode_export.h>

namespace XSD
{

class SCHEMA_EXPORT Group : public XmlElement
{
public:
    typedef QList<Group> List;

    Group();
    Group(const Group &other);
    ~Group();

    Group &operator=(const Group &other);

    void setReference(const QName &reference);
    QName reference() const;

    void setElements(const Element::List &elements);
    Element::List elements() const;

    bool isResolved() const;

private:
    class Private;
    Private *d;
};

}

SCHEMA_EXPORT QDebug operator<<(QDebug dbg, const XSD::Group &group);

#endif // GROUP_H