mesh.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 #ifndef LIBMESH_MESH_H
20 #define LIBMESH_MESH_H
21 
22 #include "libmesh/libmesh_config.h"
23 
24 #ifdef LIBMESH_ENABLE_PARMESH
25 #include "libmesh/auto_ptr.h" // libmesh_make_unique
27 namespace libMesh {
29 }
30 #else
32 namespace libMesh {
33 typedef ReplicatedMesh DefaultMesh;
34 }
35 #endif
36 
37 namespace libMesh
38 {
39 
40 // Forward declarations don't like typedefs...
41 // typedef ReplicatedMesh Mesh;
42 
51 class Mesh : public DefaultMesh
52 {
53 public:
54 
60  explicit
61  Mesh (const Parallel::Communicator & comm_in,
62  unsigned char dim=1)
63  : DefaultMesh(comm_in,dim) {}
64 
69  Mesh (const UnstructuredMesh & other_mesh) : DefaultMesh(other_mesh) {}
70 
74  Mesh(const Mesh &) = default;
75  Mesh(Mesh &&) = default;
76  ~Mesh() = default;
77 
81  Mesh & operator= (const Mesh &) = delete;
82  Mesh & operator= (Mesh &&) = delete;
83 };
84 
85 
86 
87 } // namespace libMesh
88 
89 
90 
91 #endif // LIBMESH_MESH_H
Mesh & operator=(const Mesh &)=delete
Base class for Replicated and Distributed meshes.
DistributedMesh DefaultMesh
Definition: mesh.h:28
Mesh data structure which is distributed across all processors.
Mesh(const Parallel::Communicator &comm_in, unsigned char dim=1)
Definition: mesh.h:61
Manages a collection of Nodes and Elems.
Definition: mesh.h:51
Mesh(const UnstructuredMesh &other_mesh)
Definition: mesh.h:69
~Mesh()=default