Files
clice/include/Server/Option.h
2024-09-11 17:40:32 +08:00

25 lines
446 B
C++

#pragma once
#include <string>
namespace clice {
struct Option {
/// predefined variables.
struct {
int argc;
const char** argv;
/// clice binary dictionary.
std::string binary;
/// workplace dictionary.
std::string workplace;
};
std::string resource_dictionary;
std::string compile_commands_directory;
void parse(std::string_view workplace);
};
} // namespace clice