Skip to content
Snippets Groups Projects
Forked from ogs / ogs
19780 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
readMeshFromFile.h 742 B
/**
 * \file
 * \author Karsten Rink
 * \date   2012-09-27
 * \brief  Definition of readMeshFromFile function.
 *
 * \copyright
 * Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 *
 * @file readMeshFromFile.h
 * @date 2012-09-27
 * @author Karsten Rink
 */

#ifndef READMESHFROMFILE_H
#define READMESHFROMFILE_H

#include <string>

namespace MeshLib
{
class Mesh;

namespace IO
{
MeshLib::Mesh* readMeshFromFileSerial(const std::string &file_name);
MeshLib::Mesh* readMeshFromFile(const std::string &file_name);
}
}
#endif // READMESHFROMFILE_H