00001 00002 /* orig marc, textonly xandi */ 00003 #ifndef TEXTONLYFRONTEND_H 00004 #define TEXTONLYFRONTEND_H 00005 00006 #include "../../frontEnd.h" 00007 00008 class TextOnlyFrontEnd : public FrontEnd { 00009 public: 00010 TextOnlyFrontEnd (); 00011 TextOnlyFrontEnd (int argc, char** argv); 00012 ~TextOnlyFrontEnd (); 00013 00014 void update (); 00015 00016 void displayUsers (int users); // amount of users logged in 00017 void displayMatrices (int matrices); // amount of active matrices 00018 00019 void displayDebugMessage (const char* msg); 00020 00021 private: 00022 }; 00023 00024 #endif