libMesh
matlab_io.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2024 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_MATLAB_IO_H
20 #define LIBMESH_MATLAB_IO_H
21 
22 // Local includes
23 #include "libmesh/libmesh_common.h"
24 #include "libmesh/mesh_input.h"
25 
26 // C++ includes
27 
28 namespace libMesh
29 {
30 
31 // Forward declarations
32 class MeshBase;
33 
85 class MatlabIO : public MeshInput<MeshBase>
86 {
87 public:
92  explicit
93  MatlabIO (MeshBase &);
94 
99  virtual void read (const std::string & name) override;
100 
101 private:
107  void read_stream (std::istream & in);
108 };
109 
110 
111 // ------------------------------------------------------------
112 // MatlabIO inline members
113 inline
115  MeshInput<MeshBase> (mesh_in)
116 {}
117 
118 } // namespace libMesh
119 
120 
121 #endif // LIBMESH_MATLAB_IO_H
std::string name(const ElemQuality q)
This function returns a string containing some name for q.
Definition: elem_quality.C:42
This class implements reading meshes in the Matlab PDE toolkit in a proprietary format.
Definition: matlab_io.h:85
virtual void read(const std::string &name) override
Reads in a matlab data file based on the string you pass it.
Definition: matlab_io.C:33
The libMesh namespace provides an interface to certain functionality in the library.
This is the MeshBase class.
Definition: mesh_base.h:74
This class defines an abstract interface for Mesh input.
Definition: mesh_base.h:56
MatlabIO(MeshBase &)
Constructor.
Definition: matlab_io.h:114
void read_stream(std::istream &in)
Implementation of the read() function.
Definition: matlab_io.C:41