Liquid XML Data Binder (C++, Java, VB6) / Reference / C++ / Reference / CAttributeCol / C++ iterator - Collection
In This Topic
    C++ iterator - Collection
    In This Topic
    typedef LtXmlLib20::CLtIterator<LtXmlLib20::XXXX> iterator;
    iterator begin();
      Description  
        Each collection class contains an iterator. The iterator is provided to allow you sequentially move through the contents of the collection. They behave in the same way as stl iterators. Also see begin and end

    Sample

    for (CAttribute::iterator itr = spParentElement->GetAttributes()->begin();
             itr != spParentElement->GetAttributes()->end();
             itr++)
    {
            CAttributePtr spAttr = (*itr);
    
            std::string strName = spAttr->GetName();
            ...
    }