1 using System;
2 using System.Collections;
3
4
5
6
7
8 namespace System.XPath
9 {
10 public class XPathContext
11 {
12 public XPathContext(System.Dom.Node* node_, int position_, int size_) :
13 node(node_), position(position_), size(size_)
14 {
15 }
16 public System.Dom.Node* Node() const
17 {
18 return node;
19 }
20 public int Position() const
21 {
22 return position;
23 }
24 public int Size() const
25 {
26 return size;
27 }
28 private System.Dom.Node* node;
29 private int position;
30 private int size;
31 }
32 }