top
|
up
|
prev
| next
MyContentHandler Struct
Definition at line
17
of
XmlExample.cpp
Member Functions
void
StartElement
(
const
std::u32string& namespaceUri,
const
std::u32string& localName,
const
std::u32string& qualifiedName,
const
Attributes
& attributes)
override
Member Function Details
StartElement Member Function
void
MyContentHandler::StartElement(
const
std::u32string& namespaceUri,
const
std::u32string& localName,
const
std::u32string& qualifiedName,
const
Attributes
& attributes)
override
Definition at line
19
of
XmlExample.cpp
:
20
{
21
if
(
localName
==
U"foo"
)
22
{
23
std
::
cout
<<
"foo found"
<<
std
::
endl
;
24
}
25
}
Base class overridden functions:
sngxml::xml::XmlContentHandler::StartElement
top
|
up
|
prev
| next