#include <frontEnd.h>
Inherited by DOSFrontEnd, KDEFrontEnd, MacOSFrontEnd, NCursesFrontEnd, OS2FrontEnd, PlugInFrontEnd, QtFrontEnd, TextOnlyFrontEnd, and WindowsFrontEnd.
Public Methods | |
FrontEnd () | |
Constructor for FrontEnd. More... | |
FrontEnd (int argc, char** argv) | |
Constructor for FrontEnd with arguments. More... | |
virtual | ~FrontEnd () |
Deconstructor. More... | |
virtual void | init () |
Initialization function. More... | |
virtual void | update () |
Update function. More... | |
virtual void | displayUsers (int users) |
Display logged in Users. More... | |
virtual void | displayMatrices (int matrices) |
Display open matrices (OBSOLETE!!). More... | |
virtual void | displayDebugMessage (const char* msg) |
Display a debug message. More... |
Definition at line 9 of file frontEnd.h.
00009 { 00010 public: 00011 00013 FrontEnd (); 00015 00019 FrontEnd (int argc, char** argv); 00021 virtual ~FrontEnd (); 00022 00024 virtual void init (); 00025 00027 virtual void update (); 00028 00030 00033 virtual void displayUsers (int users); // amount of users logged in 00035 00038 virtual void displayMatrices (int matrices); // amount of active matrices 00039 00041 00044 virtual void displayDebugMessage (const char* msg); 00045 }
|
|
Constructor for FrontEnd with arguments.
argc | number of arguments |
argv | pointer-pointer to arguments |
Definition at line 23 of file frontEnd.cpp.
00023 { 00024 UNUSED_ARGUMENT(argc); 00025 UNUSED_ARGUMENT(argv); 00026 }
|
|
Display a debug message.
msg | the debug message |
Reimplemented in KDEFrontEnd, NCursesFrontEnd, PlugInFrontEnd, QtFrontEnd, and TextOnlyFrontEnd.
Definition at line 45 of file frontEnd.cpp.
00045 { 00046 UNUSED_ARGUMENT(msg); 00047 }
|
Display open matrices (OBSOLETE!!).
matrices | number of open matrices |
Reimplemented in DOSFrontEnd, KDEFrontEnd, MacOSFrontEnd, NCursesFrontEnd, OS2FrontEnd, PlugInFrontEnd, QtFrontEnd, TextOnlyFrontEnd, and WindowsFrontEnd.
Definition at line 41 of file frontEnd.cpp.
00041 { 00042 UNUSED_ARGUMENT(matrices); 00043 }
|
Display logged in Users.
users | number of users to be displayed |
Reimplemented in DOSFrontEnd, KDEFrontEnd, MacOSFrontEnd, NCursesFrontEnd, OS2FrontEnd, PlugInFrontEnd, QtFrontEnd, TextOnlyFrontEnd, and WindowsFrontEnd.
Definition at line 37 of file frontEnd.cpp.
00037 { 00038 UNUSED_ARGUMENT(users); 00039 }
|
Initialization function.
Reimplemented in KDEFrontEnd, PlugInFrontEnd, and QtFrontEnd.
Definition at line 31 of file frontEnd.cpp.
00031 { 00032 }
|
Update function.
Reimplemented in DOSFrontEnd, KDEFrontEnd, MacOSFrontEnd, NCursesFrontEnd, OS2FrontEnd, PlugInFrontEnd, QtFrontEnd, TextOnlyFrontEnd, and WindowsFrontEnd.
Definition at line 34 of file frontEnd.cpp.
00034 { 00035 }