Skip to content
Snippets Groups Projects
Commit 1069a889 authored by Francois Henrotte's avatar Francois Henrotte
Browse files

No commit message

No commit message
parent 065f6bcc
No related branches found
No related tags found
No related merge requests found
......@@ -79,6 +79,8 @@ class GmshSocket{
GMSH_PARAM_QUERY_ALL = 25,
GMSH_PARAM_QUERY_END = 26,
GMSH_CONNECT = 27,
GMSH_OLPARSE = 28,
GMSH_PARAM_NOT_FOUND = 29,
GMSH_SPEED_TEST = 30,
GMSH_OPTION_1 = 100,
GMSH_OPTION_2 = 101,
......
......@@ -1072,10 +1072,14 @@ namespace onelab{
// do NOT return until all parameters have been downloaded
}
else if(type == GmshSocket::GMSH_PARAM_QUERY_END){
// all parameters have been sent
return true;
}
else if(type == GmshSocket::GMSH_PARAM_NOT_FOUND){
// parameter not found
return true;
}
else if(type == GmshSocket::GMSH_INFO){
// parameter not found or all aparameters have been sent
return true;
}
else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment