要素と属性の両方の範囲ベースのループでこのようなものを機能させるにはどうすればよいですか?
#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?
。
このように実装するのは良い考えですか、それともデザインを変更する必要がありますか?