Files
clice/include/Server/Option.h
2024-09-03 20:09:53 +08:00

19 lines
273 B
C++

#pragma once
#include <string>
namespace clice {
struct Option {
std::string compile_commands_directory;
std::string resource_dictionary;
void parse(int argc, const char** argv);
};
namespace global {
extern struct Option option;
};
} // namespace clice