top
|
up
|
prev
|
next
XPathPrincipalNodeTest Class
Definition at line
264
of
XPathExpr.hpp
Member Functions
bool
Select
(
Node
* node,
Axis
axis)
const override
std::unique_ptr<
Node
>
ToDom
()
const override
Member Function Details
Select Member Function
bool
sngxml::xpath::XPathPrincipalNodeTest::Select(
Node
* node,
Axis
axis)
const override
Definition at line
1471
of
XPathExpr.cpp
Declaration at line
267
of
XPathExpr.hpp
Base class overridden functions:
sngxml::xpath::XPathNodeTestExpr::Select
Calls:
sngxml::dom::Node::GetNodeType
ToDom Member Function
std::unique_ptr<
Node
> sngxml::xpath::XPathPrincipalNodeTest::ToDom()
const override
Definition at line
1487
of
XPathExpr.cpp
:
1488
{
1489
std
::
unique_ptr
<
dom
::
Element
>
element
(
new
dom
::
Element
(
U"principalNodeTest"
)
)
;
1490
return
std
::
unique_ptr
<
dom
::
Node
>
(
element
.
release
(
)
)
;
1491
}
Declaration at line
268
of
XPathExpr.hpp
Base class overridden functions:
sngxml::xpath::XPathExpr::ToDom
top
|
up
|
prev
|
next