Skip to content
Snippets Groups Projects
Commit b96ee9c0 authored by Gaetan Bricteux's avatar Gaetan Bricteux
Browse files

onelab fix

parent 37c86430
No related branches found
No related tags found
No related merge requests found
...@@ -595,8 +595,8 @@ namespace onelab{ ...@@ -595,8 +595,8 @@ namespace onelab{
void setPid(int pid){ _pid = pid; } void setPid(int pid){ _pid = pid; }
GmshServer *getGmshServer(){ return _gmshServer; } GmshServer *getGmshServer(){ return _gmshServer; }
void setGmshServer(GmshServer *server){ _gmshServer = server; } void setGmshServer(GmshServer *server){ _gmshServer = server; }
virtual bool run(const std::string &what); virtual bool run(const std::string &what){ return false; }
virtual bool kill(); virtual bool kill(){ return false; }
}; };
class remoteNetworkClient : public client{ class remoteNetworkClient : public client{
......
...@@ -4,12 +4,12 @@ ...@@ -4,12 +4,12 @@
// bugs and problems to <gmsh@geuz.org>. // bugs and problems to <gmsh@geuz.org>.
#include <FL/Fl.H> #include <FL/Fl.H>
#include "GmshMessage.h"
#if (FL_MAJOR_VERSION == 1) && (FL_MINOR_VERSION == 3) #if (FL_MAJOR_VERSION == 1) && (FL_MINOR_VERSION == 3)
#include <FL/Fl_Value_Input.H> #include <FL/Fl_Value_Input.H>
#include <FL/Fl_Input_Choice.H> #include <FL/Fl_Input_Choice.H>
#include <FL/Fl_Check_Button.H> #include <FL/Fl_Check_Button.H>
#include <FL/Fl_Box.H> #include <FL/Fl_Box.H>
#include "GmshMessage.h"
#include "Context.h" #include "Context.h"
#include "Options.h" #include "Options.h"
#include "OS.h" #include "OS.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment