summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeio/ktraderparse.h
blob: 63743d3f3bd66f91a329ef0e0d439f583ce1112e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* This file is part of the KDE project
   Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>

   This 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., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

#ifndef __parse_h__
#define __parse_h__

/*
 * Functions definition for yacc
 */
void TDETraderParse_mainParse( const char *_code );
void TDETraderParse_setParseTree( void *_ptr1 );
void TDETraderParse_error( const char* err );
void* TDETraderParse_newOR( void *_ptr1, void *_ptr2 );
void* TDETraderParse_newAND( void *_ptr1, void *_ptr2 );
void* TDETraderParse_newCMP( void *_ptr1, void *_ptr2, int _i );
void* TDETraderParse_newIN( void *_ptr1, void *_ptr2 );
void* TDETraderParse_newMATCH( void *_ptr1, void *_ptr2 );
void* TDETraderParse_newCALC( void *_ptr1, void *_ptr2, int _i );
void* TDETraderParse_newBRACKETS( void *_ptr1 );
void* TDETraderParse_newNOT( void *_ptr1 );
void* TDETraderParse_newEXIST( char *_ptr1 );
void* TDETraderParse_newID( char *_ptr1 );
void* TDETraderParse_newSTRING( char *_ptr1 );
void* TDETraderParse_newNUM( int _i );
void* TDETraderParse_newFLOAT( float _f );
void* TDETraderParse_newBOOL( char _b );

void* TDETraderParse_newWITH( void *_ptr1 );
void* TDETraderParse_newMAX( void *_ptr1 );
void* TDETraderParse_newMIN( void *_ptr1 );
void* TDETraderParse_newMAX2( char *_id );
void* TDETraderParse_newMIN2( char *_id );
void* TDETraderParse_newFIRST();
void* TDETraderParse_newRANDOM();

#endif