/* $Id: LOG.H 2.4 1995/07/20 11:24:33 leon Exp $
*
* GISEL - G-CODE ISEL CNC driver
*
* Copyright (c) 1994 LECAD
* All Rights Reserved.
*
*/
class TWindow;
class TTerminal;
/**
** Logs communication from/to controller
**/
class TLogWindow : public TWindow
{
TTerminal *terminal;
TLogWindow **instance;
public:
TLogWindow( const TRect& bounds, const char *aTitle, short aNumber,
TLogWindow **log );
virtual ~TLogWindow();
void insertLine(const char *s);
void TLogWindow::insertChars(const char *s, int count);
static char *getErrMsg(int reply);
void insertErrMsg(int reply);
};
syntax highlighted by Code2HTML, v. 0.9.1