#include <pluginFrontEnd.h>
Inherits FrontEnd.
Public Methods | |
PlugInFrontEnd () | |
PlugInFrontEnd (int argc, char** argv) | |
~PlugInFrontEnd () | |
void | init () |
Initialization function. More... | |
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 (const char* msg) |
Display a debug message. More... |
Definition at line 8 of file pluginFrontEnd.h.
00008 { 00009 public: 00010 PlugInFrontEnd (); 00011 PlugInFrontEnd (int argc, char** argv); 00012 ~PlugInFrontEnd (); 00013 00014 void init (); 00015 void update (); 00016 00017 void displayUsers (int users); // amount of users logged in 00018 void displayMatrices (int matrices); // amount of active matrices 00019 00020 void displayDebugMessage (const char* msg); 00021 00022 private: 00023 }
|
|
Definition at line 17 of file pluginFrontEnd.cpp.
00018 { 00019 UNUSED_ARGUMENT(argc); 00020 UNUSED_ARGUMENT(argv); 00021 PlugInFrontEnd (); 00022 }
|
|
Display a debug message.
msg | the debug message |
Reimplemented from FrontEnd.
Definition at line 84 of file pluginFrontEnd.cpp.
00085 { 00086 FEPList* tmp; 00087 tmp = FEPhead; 00088 00089 while (tmp != NULL) 00090 { 00091 if ( tmp->active ) 00092 tmp->plug->displayDebugMessage ( const_cast<char*>(msg) ); 00093 00094 tmp = tmp->next; 00095 } 00096 }
|
Display open matrices (OBSOLETE!!).
matrices | number of open matrices |
Reimplemented from FrontEnd.
Definition at line 70 of file pluginFrontEnd.cpp.
00071 { 00072 FEPList* tmp; 00073 tmp = FEPhead; 00074 00075 while (tmp != NULL) 00076 { 00077 if ( tmp->active ) 00078 tmp->plug->displayMatrices ( matrices ); 00079 00080 tmp = tmp->next; 00081 } 00082 }
|
Display logged in Users.
users | number of users to be displayed |
Reimplemented from FrontEnd.
Definition at line 56 of file pluginFrontEnd.cpp.
00057 { 00058 FEPList* tmp; 00059 tmp = FEPhead; 00060 00061 while (tmp != NULL) 00062 { 00063 if ( tmp->active ) 00064 tmp->plug->displayUsers ( users ); 00065 00066 tmp = tmp->next; 00067 } 00068 }
|
Initialization function.
Reimplemented from FrontEnd.
Definition at line 28 of file pluginFrontEnd.cpp.
|