Revision a1f53e7be9c5b2aee6931dede79d2b89e6170fd9 authored by Thomas Fischer on 04 November 2021, 07:34:51 UTC, committed by Dmitry Yu. Naumov on 05 November 2021, 00:14:15 UTC
1 parent 3288227
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