/* * This source code is released into the public domain. */ #ifndef LFJAIL_CONTEXT_HH #define LFJAIL_CONTEXT_HH #include #include namespace lfjail { /* * The runtime context. This is mainly changed via command-line options. */ struct context { // Path to the database directory (-d). std::filesystem::path dbdir = LFJAIL_DBDIR; // Print more detailed messages (-v). bool verbose = false; }; } // namespace lfjail #endif // !LFJAIL_CONTEXT_HH