1
// =================================
2
// Copyright (c) 2021 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
#include <sngxml/xpath/XPathContext.hpp>
7
8
namespace
sngxml
{
namespace
xpath
{
9
10
XPathContext
::
XPathContext
(
sngxml
::
dom
::
Node
*
node_
,
int
position_
,
int
size_
)
:
node
(
node_
)
,
position
(
position_
)
,
size
(
size_
)
11
{
12
}
13
14
}
}
// namespace sngxml::xpath