libxml++  5.2.0
Public Member Functions | Public Attributes | List of all members
xmlpp::SaxParser::AttributeHasName Struct Reference

This functor is a helper to find an attribute by name in an AttributeList using the standard algorithm std::find_if. More...

#include <libxml++/parsers/saxparser.h>

Public Member Functions

 AttributeHasName (ustring const & n)
 
bool operator() (Attribute const & attribute)
 

Public Attributes

ustring const & name
 

Detailed Description

This functor is a helper to find an attribute by name in an AttributeList using the standard algorithm std::find_if.

Example:
ustring name = "foo";
AttributeList::const_iterator attribute = std::find_if(attributes.begin(), attributes.end(), AttributeHasName(name));

Constructor & Destructor Documentation

◆ AttributeHasName()

xmlpp::SaxParser::AttributeHasName::AttributeHasName ( ustring const &  n)
inline

Member Function Documentation

◆ operator()()

bool xmlpp::SaxParser::AttributeHasName::operator() ( Attribute const &  attribute)
inline

Member Data Documentation

◆ name

ustring const& xmlpp::SaxParser::AttributeHasName::name