Revision cb07cd1f82ea90bda0c3e44ad9b96a0028b9736d authored by Lars Bilke on 29 March 2022, 09:43:52 UTC, committed by Lars Bilke on 30 March 2022, 11:05:00 UTC
1 parent fabdee6
Raw File
PrjProcessing.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2022, 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 <sstream>
#include <vector>

namespace BaseLib
{
/**
 * \brief Applies includes and patch files to project file.
 *
 * \param prj_stream    The processed prj as a stringstream.
 * \param filepath      The prj file.
 * \param patch_files   Optional patch files.
 * \param write_prj     Write the processed project file to disk?
 * \param out_directory The directory to write the processed file to.
 */
void prepareProjectFile(std::stringstream& prj_stream,
                        const std::string& filepath,
                        const std::vector<std::string>& patch_files,
                        bool write_prj, const std::string& out_directory);
}  // namespace BaseLib
back to top