Skip to content
Snippets Groups Projects
Commit b13756a9 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

don't include GmshClient
parent 02887328
Branches
Tags
No related merge requests found
# $Id: Makefile,v 1.66 2005-01-08 20:15:11 geuzaine Exp $ # $Id: Makefile,v 1.67 2005-01-13 23:39:10 geuzaine Exp $
# #
# Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
# #
...@@ -153,12 +153,11 @@ Colorbar_Window.o: Colorbar_Window.cpp ../Common/Gmsh.h \ ...@@ -153,12 +153,11 @@ Colorbar_Window.o: Colorbar_Window.cpp ../Common/Gmsh.h \
GmshServer.o: GmshServer.cpp ../Common/Context.h ../DataStr/List.h GmshServer.o: GmshServer.cpp ../Common/Context.h ../DataStr/List.h
Solvers.o: Solvers.cpp ../Common/Gmsh.h ../Common/Message.h \ Solvers.o: Solvers.cpp ../Common/Gmsh.h ../Common/Message.h \
../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \
../DataStr/avl.h ../DataStr/Tools.h ../utils/solvers/GmshClient.h \ ../DataStr/avl.h ../DataStr/Tools.h GmshServer.h ../Parser/OpenFile.h \
GmshServer.h ../Parser/OpenFile.h Solvers.h ../Common/GmshUI.h GUI.h \ Solvers.h ../Common/GmshUI.h GUI.h Opengl_Window.h ../Mesh/Mesh.h \
Opengl_Window.h ../Mesh/Mesh.h ../Mesh/Vertex.h ../Mesh/Element.h \ ../Mesh/Vertex.h ../Mesh/Element.h ../Mesh/Simplex.h ../Mesh/Face.h \
../Mesh/Simplex.h ../Mesh/Face.h ../Mesh/Edge.h ../Geo/ExtrudeParams.h \ ../Mesh/Edge.h ../Geo/ExtrudeParams.h ../Mesh/DiscreteSurface.h \
../Mesh/DiscreteSurface.h ../Common/VertexArray.h \ ../Common/VertexArray.h ../Common/SmoothNormals.h ../Mesh/Metric.h \
../Common/SmoothNormals.h ../Mesh/Metric.h ../Mesh/Matrix.h \ ../Mesh/Matrix.h Colorbar_Window.h ../Common/ColorTable.h \
Colorbar_Window.h ../Common/ColorTable.h ../Graphics/Draw.h \ ../Graphics/Draw.h ../Common/Views.h ../Common/GmshMatrix.h \
../Common/Views.h ../Common/GmshMatrix.h ../Common/AdaptiveViews.h \ ../Common/AdaptiveViews.h ../Common/Context.h
../Common/Context.h
// $Id: Solvers.cpp,v 1.31 2005-01-01 19:35:28 geuzaine Exp $ // $Id: Solvers.cpp,v 1.32 2005-01-13 23:39:10 geuzaine Exp $
// //
// Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
// //
...@@ -20,9 +20,23 @@ ...@@ -20,9 +20,23 @@
// Please report all bugs and problems to <gmsh@geuz.org>. // Please report all bugs and problems to <gmsh@geuz.org>.
#include "Gmsh.h" #include "Gmsh.h"
#include "GmshClient.h"
#include "GmshServer.h" #include "GmshServer.h"
// This should match what's in GmshClient.h
#define GMSH_CLIENT_START 1
#define GMSH_CLIENT_STOP 2
#define GMSH_CLIENT_INFO 10
#define GMSH_CLIENT_WARNING 11
#define GMSH_CLIENT_ERROR 12
#define GMSH_CLIENT_PROGRESS 13
#define GMSH_CLIENT_VIEW 20
#define GMSH_CLIENT_OPTION 100
#define GMSH_CLIENT_OPTION_1 (GMSH_CLIENT_OPTION+0)
#define GMSH_CLIENT_OPTION_2 (GMSH_CLIENT_OPTION+1)
#define GMSH_CLIENT_OPTION_3 (GMSH_CLIENT_OPTION+2)
#define GMSH_CLIENT_OPTION_4 (GMSH_CLIENT_OPTION+3)
#define GMSH_CLIENT_OPTION_5 (GMSH_CLIENT_OPTION+4)
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/stat.h> #include <sys/stat.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment