#include <swdisp.h>
Public Methods | |
SWDisplay () | |
virtual char | Display (SWModule &imodule) |
casts a module to a character pointer and displays it to raw output (overriden for different display types and module types if necessary). More... |
raw textout, curses, xwindow, etc.)
Definition at line 33 of file swdisp.h.
|
casts a module to a character pointer and displays it to raw output (overriden for different display types and module types if necessary).
Definition at line 21 of file swdisp.cpp. Referenced by SWModule::Display.
00022 { 00023 cout << (const char *)imodule; 00024 return 0; 00025 } |