Mercurial > ~dholland > hg > ag > index.cgi
comparison anagram/guisupport/symtabdc.h @ 0:13d2b8934445
Import AnaGram (near-)release tree into Mercurial.
author | David A. Holland |
---|---|
date | Sat, 22 Dec 2007 17:52:45 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:13d2b8934445 |
---|---|
1 /* | |
2 * AnaGram, A System for Syntax Directed Programming | |
3 * Copyright 1993-2002 Parsifal Software. All Rights Reserved. | |
4 * See the file COPYING for license and usage terms. | |
5 * | |
6 * symtabdc.h | |
7 */ | |
8 | |
9 #ifndef SYMTABDC_H | |
10 #define SYMTABDC_H | |
11 | |
12 | |
13 class symbol_table_dc : public dc { | |
14 public: | |
15 static MenuOption *auxTable[]; | |
16 virtual MenuOption **getAuxWinMenu(void) { return auxTable; } | |
17 | |
18 symbol_table_dc(void); | |
19 symbol_table_dc(symbol_table_dc &x) : dc(x) {} | |
20 | |
21 virtual void getLine(unsigned) const; | |
22 | |
23 virtual dc_ref expansion_rules(unsigned); | |
24 virtual dc_ref productions(unsigned); | |
25 virtual dc_ref set_elements(unsigned); | |
26 virtual dc_ref usage(unsigned); | |
27 | |
28 virtual unsigned token(unsigned ln); | |
29 | |
30 virtual int expansion_rules_ok(unsigned); | |
31 virtual int productions_ok(unsigned); | |
32 virtual int set_elements_ok(unsigned); | |
33 virtual int usage_ok(unsigned); | |
34 }; | |
35 | |
36 | |
37 #endif /* SYMTABDC_H */ |