comparison anagram/guisupport/errordc.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 * errordc.h
7 */
8
9 #ifndef ERRORDC_H
10 #define ERRORDC_H
11
12 #include "dc.h"
13
14
15 class error_display_dc : public dc {
16 public:
17 error_display_dc(void);
18 error_display_dc(error_display_dc &x) : dc(x) {}
19
20 virtual void getLine(unsigned) const;
21 virtual void synchCursor(unsigned) const;
22
23 virtual AgString findHelpTopic();
24 };
25
26
27 #endif /* ERRORDC_H */