https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 0f177b7ecb8f6f3318894f502c1c8f1bcbddd7d1 authored by Dmitri Naumov on 15 February 2021, 16:25:03 UTC
[T/RM] Use explicit hm coupling in ortho-swelling.
Tip revision: 0f177b7
readStringListFromFile.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, 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>
#include <vector>

namespace BaseLib
{
namespace IO
{
/// Reads non-empty lines from a list of strings from a file into a vector
std::vector<std::string> readStringListFromFile(std::string const& filename);
}
}  // namespace BaseLib
back to top