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