2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Access Method
|
|
|
|
* MODULE: lls.h
|
2004-04-18 16:22:27 +02:00
|
|
|
* DESCRIPTION: most commonly used in Jrd stacks
|
2001-05-23 15:26:42 +02:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
2004-04-18 16:22:27 +02:00
|
|
|
* Created by: Alex Peshkov <peshkoff@mail.ru>
|
2001-05-23 15:26:42 +02:00
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
2004-04-18 16:22:27 +02:00
|
|
|
*
|
2001-05-23 15:26:42 +02:00
|
|
|
*/
|
|
|
|
|
2003-10-03 03:53:34 +02:00
|
|
|
#ifndef JRD_LLS_H
|
|
|
|
#define JRD_LLS_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-04-18 16:22:27 +02:00
|
|
|
#include "../common/classes/stack.h"
|
2001-12-24 03:51:06 +01:00
|
|
|
|
2004-04-18 16:22:27 +02:00
|
|
|
namespace Jrd {
|
|
|
|
class Record;
|
2010-10-12 13:36:51 +02:00
|
|
|
class BoolExprNode;
|
2010-11-14 18:25:48 +01:00
|
|
|
class ValueExprNode;
|
2010-10-12 13:36:51 +02:00
|
|
|
class RecordSourceNode;
|
2010-12-04 23:15:03 +01:00
|
|
|
class StmtNode;
|
2010-10-12 13:36:51 +02:00
|
|
|
|
2004-04-18 16:22:27 +02:00
|
|
|
typedef Firebird::Stack<Record*> RecordStack;
|
2010-10-12 13:36:51 +02:00
|
|
|
typedef Firebird::Stack<BoolExprNode*> BoolExprNodeStack;
|
2010-11-14 18:25:48 +01:00
|
|
|
typedef Firebird::Stack<ValueExprNode*> ValueExprNodeStack;
|
2010-10-12 13:36:51 +02:00
|
|
|
typedef Firebird::Stack<RecordSourceNode*> RecordSourceNodeStack;
|
2010-12-04 23:15:03 +01:00
|
|
|
typedef Firebird::Stack<StmtNode*> StmtNodeStack;
|
2004-04-18 16:22:27 +02:00
|
|
|
typedef Firebird::Stack<UCHAR*> UCharStack;
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
#endif // JRD_LLS_H
|