blob: 16499d6ae4cf09eb9e224050a3f66ebc1ad5eb66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once
#include <filesystem>
#include <string>
#include <map>
#include <vector>
struct Settings;
extern std::filesystem::path configurationFile;;
extern std::filesystem::path configHeaderFile;
int configure(const Settings& settings, int argc, char* argv[]);
int reconfigure(const Settings& settings, int argc, char* argv[]);
|