comparison anagram/guisupport/keytabdc.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-1999 Parsifal Software. All Rights Reserved.
4 * See the file COPYING for license and usage terms.
5 *
6 * keytabdc.h - keyword table
7 */
8
9 #ifndef KEYTABDC_H
10 #define KEYTABDC_H
11
12 #include "dc.h"
13
14 class keyword_table_dc : public dc {
15 public:
16 static MenuOption *auxTable[];
17 virtual MenuOption **getAuxWinMenu(void) { return auxTable; }
18
19 keyword_table_dc(void);
20 keyword_table_dc(keyword_table_dc &x) : dc(x) {}
21
22 virtual void getLine(unsigned) const;
23
24 dc_ref usage(unsigned);
25 int usage_ok(unsigned);
26 };
27
28 #endif /* KEYTABDC_H */