Revision a5dbf0f360b25873731b98da7632406a45979894 authored by Dmitry Yu. Naumov on 12 May 2021, 13:13:17 UTC, committed by Dmitry Yu. Naumov on 12 May 2021, 13:13:17 UTC
ctest improvements

See merge request ogs/ogs!3619
2 parent s e3b4c6c + 2325db8
Raw File
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