thalassa/cms/main_all.hpp
2026-03-19 06:23:52 +05:00

20 lines
419 B
C++

#ifndef MAIN_ALL_HPP_SENTRY
#define MAIN_ALL_HPP_SENTRY
#include <scriptpp/scrvar.hpp>
#include <scriptpp/scrvect.hpp>
struct cmdline_common {
ScriptVector inifiles;
ScriptVariable work_dir;
ScriptVariableInv opt_selector;
ScriptVariable command;
};
class Database;
bool load_inifiles(Database &database, const ScriptVector &ini_list,
const ScriptVariable &opt_selector);
#endif