#include <swdisp.h>
Inheritance diagram for SWDisplay:
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... | |
Static Private Attributes | |
SWClass | classdef |
raw textout, curses, xwindow, etc.)
Definition at line 34 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 23 of file swdisp.cpp. Referenced by SWModule::Display().
00024 { 00025 cout << (const char *)imodule; 00026 return 0; 00027 } |