|
|
/* This file is part of the KDE project Copyright (C) 1998, 1999 Torben WeisThis library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __parse_h__ #define __parse_h__ /** * Functions definition for yacc */ void KTraderParse_setParseTree( void *_ptr1 ); void* KTraderParse_newOR( void *_ptr1, void *_ptr2 ); void* KTraderParse_newAND( void *_ptr1, void *_ptr2 ); void* KTraderParse_newCMP( void *_ptr1, void *_ptr2, int _i ); void* KTraderParse_newIN( void *_ptr1, void *_ptr2 ); void* KTraderParse_newMATCH( void *_ptr1, void *_ptr2 ); void* KTraderParse_newCALC( void *_ptr1, void *_ptr2, int _i ); void* KTraderParse_newBRACKETS( void *_ptr1 ); void* KTraderParse_newNOT( void *_ptr1 ); void* KTraderParse_newEXIST( char *_ptr1 ); void* KTraderParse_newID( char *_ptr1 ); void* KTraderParse_newSTRING( char *_ptr1 ); void* KTraderParse_newNUM( int _i ); void* KTraderParse_newFLOAT( float _f ); void* KTraderParse_newBOOL( char _b ); void* KTraderParse_newWITH( void *_ptr1 ); void* KTraderParse_newMAX( void *_ptr1 ); void* KTraderParse_newMIN( void *_ptr1 ); void* KTraderParse_newMAX2( char *_id ); void* KTraderParse_newMIN2( char *_id ); void* KTraderParse_newFIRST(); void* KTraderParse_newRANDOM(); #endif
Generated by: dfaure on faure on Tue Apr 16 08:49:48 2002, using kdoc 2.0a53. |