You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
577 B
20 lines
577 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1992.
|
|
//
|
|
// File: Split.hxx
|
|
//
|
|
// Contents: Split expressions and restrictions into indexable/non-indexable
|
|
//
|
|
// History: 22-Dec-92 KyleP Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
class CNodeXpr;
|
|
|
|
void SplitXpr( CNodeXpr &nxp, CNodeXpr &nxpFullyIndexable);
|
|
void Split( XRestriction& xRst, XRestriction& xRstFullyResolvable );
|
|
|