1
2
3
4
5
6
7
8
9
|
/* $Id$
* $Log$
* Revision 1.1.2.2 2001/03/09 04:01:20 geraint
* \ escapes newline.
*
* Revision 1.1.2.1 2001/03/09 02:59:26 geraint
* got_comment: (char)c no longer compared to (int)EOF.
*
* Revision 1.1 2000/12/28 09:46:05 peterg
|
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $Id$
* $Log$
* Revision 1.2 2001/03/19 02:28:53 geraint
* Branch merge: merging-ode2odes-exe back to MAIN.
*
* Revision 1.1.2.2 2001/03/09 04:01:20 geraint
* \ escapes newline.
*
* Revision 1.1.2.1 2001/03/09 02:59:26 geraint
* got_comment: (char)c no longer compared to (int)EOF.
*
* Revision 1.1 2000/12/28 09:46:05 peterg
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* Bracket.hh deals with nesting levels of parenthesis
* just add Bracket pointer to string / stream
*/
#include "Bracket.hh"
/*
* use lbrace, etc. in expressions to automate nesting calculations
*/
LeftBrace *lbrace = new LeftBrace;
RightBrace *rbrace = new RightBrace;
|
>
>
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
* Bracket.hh deals with nesting levels of parenthesis
* just add Bracket pointer to string / stream
*/
#include "Bracket.hh"
using namespace std;
/*
* use lbrace, etc. in expressions to automate nesting calculations
*/
LeftBrace *lbrace = new LeftBrace;
RightBrace *rbrace = new RightBrace;
|