KHTML
Go to the documentation of this file.
23 #include "wtf/Platform.h"
30 SVGElementInstanceList::SVGElementInstanceList(PassRefPtr<SVGElementInstance> rootInstance)
31 : m_rootInstance(rootInstance)
35 SVGElementInstanceList::~SVGElementInstanceList()
39 unsigned int SVGElementInstanceList::length()
const
43 SVGElementInstance* instance;
44 for (instance = m_rootInstance->firstChild(); instance; instance = instance->nextSibling())
50 RefPtr<SVGElementInstance> SVGElementInstanceList::item(
unsigned int index)
53 SVGElementInstance* instance = m_rootInstance->firstChild();
55 while (instance && pos < index) {
56 instance = instance->nextSibling();
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:19 by
doxygen 1.8.7 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.