我怎样才能使这样的事情与元素和属性的基于范围的循环一起工作?
#include <list>
#include "XMLAttribute.h"
namespace XML
{
class Element
{
private:
typedef std::list<Attribute> attribute_container;
typedef std::list<Element> element_container;
public:
XMLElement();
bool has_attributes() const;
bool has_elements() const;
bool has_data() const;
const std::string &name() const;
const std::string &data() const;
private:
std::string _name;
std::string _data;
attribute_container _attributes;
element_container _elements;
};
}
我希望能够使用类似的东西:
for (XML::Element &el : element) { .. }
for (XML::Attribute &at : element) { .. }
并阻止类似for (auto &some_name : element) { .. } //XML::Element or XML::Attribute?
.
像这样实现它是个好主意还是应该改变我的设计?