Bug 1874684 - Part 4: Prefer const references instead of copying Instant values....
[gecko.git] / dom / xslt / xpath / txForwardContext.h
blob447f2fbfc1331f7cd43e704b89685d0effeda905
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef __TX_XPATH_CONTEXT
7 #define __TX_XPATH_CONTEXT
9 #include "txIXPathContext.h"
10 #include "txNodeSet.h"
12 class txForwardContext : public txIEvalContext {
13 public:
14 txForwardContext(txIMatchContext* aContext, const txXPathNode& aContextNode,
15 txNodeSet* aContextNodeSet)
16 : mInner(aContext),
17 mContextNode(aContextNode),
18 mContextSet(aContextNodeSet) {}
20 TX_DECL_EVAL_CONTEXT;
22 private:
23 txIMatchContext* mInner;
24 const txXPathNode& mContextNode;
25 RefPtr<txNodeSet> mContextSet;
28 #endif // __TX_XPATH_CONTEXT