Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
b13756a9
Commit
b13756a9
authored
20 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
don't include GmshClient
parent
02887328
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Fltk/Makefile
+9
-10
9 additions, 10 deletions
Fltk/Makefile
Fltk/Solvers.cpp
+16
-2
16 additions, 2 deletions
Fltk/Solvers.cpp
with
25 additions
and
12 deletions
Fltk/Makefile
+
9
−
10
View file @
b13756a9
# $Id: Makefile,v 1.6
6
2005-01-
08 20:15
:1
1
geuzaine Exp $
# $Id: Makefile,v 1.6
7
2005-01-
13 23:39
:1
0
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
This diff is collapsed.
Click to expand it.
Fltk/Solvers.cpp
+
16
−
2
View file @
b13756a9
// $Id: Solvers.cpp,v 1.3
1
2005-01-
01 19:35:28
geuzaine Exp $
// $Id: Solvers.cpp,v 1.3
2
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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment