Revision 172af345a2930d78c66138e8d904a86958b2c11d authored by Lars Bilke on 26 October 2023, 16:42:17 UTC, committed by Lars Bilke on 26 October 2023, 16:42:17 UTC
Draft: [cmake] Refactored coverage.

See merge request ogs/ogs!4776
2 parent s c6720e6 + 4d0e581
Raw File
readGeometryFromFile.h
/**
 * \file
 *
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <string>

namespace GeoLib
{
class GEOObjects;
}

namespace FileIO
{
void readGeometryFromFile(std::string const& fname,
                          GeoLib::GEOObjects& geo_objs,
                          std::string const& gmsh_path);
}
back to top