xml_object_range< It > Class Template Reference

xml_object_range< It > Class Template Reference

#include <pugixml.hpp>

Class Description

template<typename It>
class pugi::xml_object_range< It >

Definition at line 216 of file pugixml.hpp.

Public Types

typedef It const_iterator
 

Public Member Functions

 xml_object_range (It b, It e)
 
It begin () const
 
It end () const
 

Member Typedef Documentation

typedef It const_iterator

Definition at line 219 of file pugixml.hpp.

Constructor & Destructor Documentation

xml_object_range ( It  b,
It  e 
)
inline

Definition at line 221 of file pugixml.hpp.

221  : _begin(b), _end(e)
222  {
223  }
Py_ssize_t * e
Definition: longobject.h:43

Member Function Documentation

It begin ( ) const
inline

Definition at line 225 of file pugixml.hpp.

225 { return _begin; }
It end ( ) const
inline

Definition at line 226 of file pugixml.hpp.

226 { return _end; }

The documentation for this class was generated from the following file: