Drizzled Public API Documentation

pars0types.h
Go to the documentation of this file.
00001 /*****************************************************************************
00002 
00003 Copyright (C) 1998, 2009, Innobase Oy. All Rights Reserved.
00004 
00005 This program is free software; you can redistribute it and/or modify it under
00006 the terms of the GNU General Public License as published by the Free Software
00007 Foundation; version 2 of the License.
00008 
00009 This program is distributed in the hope that it will be useful, but WITHOUT
00010 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00011 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
00012 
00013 You should have received a copy of the GNU General Public License along with
00014 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
00015 St, Fifth Floor, Boston, MA 02110-1301 USA
00016 
00017 *****************************************************************************/
00018 
00019 /**************************************************/
00026 #pragma once
00027 #ifndef pars0types_h
00028 #define pars0types_h
00029 
00030 typedef struct pars_info_struct   pars_info_t;
00031 typedef struct pars_user_func_struct  pars_user_func_t;
00032 typedef struct pars_bound_lit_struct  pars_bound_lit_t;
00033 typedef struct pars_bound_id_struct pars_bound_id_t;
00034 typedef struct sym_node_struct    sym_node_t;
00035 typedef struct sym_tab_struct   sym_tab_t;
00036 typedef struct pars_res_word_struct pars_res_word_t;
00037 typedef struct func_node_struct   func_node_t;
00038 typedef struct order_node_struct  order_node_t;
00039 typedef struct proc_node_struct   proc_node_t;
00040 typedef struct elsif_node_struct  elsif_node_t;
00041 typedef struct if_node_struct   if_node_t;
00042 typedef struct while_node_struct  while_node_t;
00043 typedef struct for_node_struct    for_node_t;
00044 typedef struct exit_node_struct   exit_node_t;
00045 typedef struct return_node_struct return_node_t;
00046 typedef struct assign_node_struct assign_node_t;
00047 typedef struct col_assign_node_struct col_assign_node_t;
00048 
00049 typedef UT_LIST_BASE_NODE_T(sym_node_t) sym_node_list_t;
00050 
00051 #endif