1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.Xml.Xsl.XsltOld
6 {
7     using System;
8     using System.Xml;
9     using System.Xml.XPath;
10     using MS.Internal.Xml.XPath;
11 
12     internal sealed class TheQuery
13     {
14         internal InputScopeManager _ScopeManager;
15         private CompiledXpathExpr _CompiledQuery;
16 
17         internal CompiledXpathExpr CompiledQuery { get { return _CompiledQuery; } }
18 
TheQuery(CompiledXpathExpr compiledQuery, InputScopeManager manager)19         internal TheQuery(CompiledXpathExpr compiledQuery, InputScopeManager manager)
20         {
21             _CompiledQuery = compiledQuery;
22             _ScopeManager = manager.Clone();
23         }
24     }
25 }
26