00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef ATTRIBUTEGROUP_H
00022
00023 #define ATTRIBUTEGROUP_H
00024
00025
00026
00027 #include <list>
00028 #include "xmlpull/wsdlpull_export.h"
00029 #include "schemaparser/Schema.h"
00030 #include "schemaparser/Attribute.h"
00031
00032 namespace Schema {
00033 class WSDLPULL_EXPORT AttributeGroup
00034 {
00035 public:
00036 AttributeGroup();
00037 AttributeGroup(const std::string & n);
00038 void addAttribute(const Attribute& a);
00039 std::string getName()const;
00040 std::list<Attribute>::iterator begin();
00041 std::list<Attribute>::iterator end();
00042
00043 private:
00044 std::list<Attribute> att_list;
00045 std::string name;
00046
00047 };
00048
00049 inline
00050 AttributeGroup::AttributeGroup(const std::string & n)
00051 :name(n)
00052 {
00053 att_list.clear();
00054 }
00055
00056 inline
00057 void
00058 AttributeGroup::addAttribute(const Attribute& a)
00059 {
00060 att_list.push_back(a);
00061 }
00062
00063 inline
00064 std::list<Attribute>::iterator
00065 AttributeGroup::begin()
00066 {
00067 return att_list.begin();
00068 }
00069
00070 inline
00071 std::list<Attribute>::iterator
00072 AttributeGroup::end()
00073 {
00074 return att_list.end();
00075 }
00076
00077 inline
00078 std::string
00079 AttributeGroup::getName()const
00080 {
00081 return name;
00082 }
00083 }
00084 #endif // ATTRIBUTEGROUP_H