#include <windowsFrontEnd.h>
Inherits FrontEnd.
Public Methods | |
void | WindowsFrontEnd () |
void | ~WindowsFrontEnd () |
void | update () |
Update function. More... | |
void | displayUsers (int users) |
Display logged in Users. More... | |
void | displayMatrices (int matrices) |
Display open matrices (OBSOLETE!!). More... | |
void | displayDebugMessage (char*) |
Definition at line 5 of file windowsFrontEnd.h.
00005 { 00006 public: 00007 void WindowsFrontEnd (); 00008 void ~WindowsFrontEnd (); 00009 00010 void update (); 00011 00012 void displayUsers (int users); // amount of users logged in 00013 void displayMatrices (int matrices); // amount of active matrices 00014 00015 void displayDebugMessage (char*); 00016 }
|
|
|
|
Display open matrices (OBSOLETE!!).
matrices | number of open matrices |
Reimplemented from FrontEnd.
|
Display logged in Users.
users | number of users to be displayed |
Reimplemented from FrontEnd.
|