#include "configpaths.h" namespace newsboat { ConfigPaths::ConfigPaths() : rs_object(configpaths::bridged::create()) { } bool ConfigPaths::initialized() const { return newsboat::configpaths::bridged::initialized(*rs_object); } std::string ConfigPaths::error_message() const { return std::string(newsboat::configpaths::bridged::error_message(*rs_object)); } void ConfigPaths::process_args(const CliArgsParser& args) { newsboat::configpaths::bridged::process_args(*rs_object, args.get_rust_ref()); } bool ConfigPaths::try_migrate_from_newsbeuter() { return newsboat::configpaths::bridged::try_migrate_from_newsbeuter(*rs_object); } bool ConfigPaths::create_dirs() const { return newsboat::configpaths::bridged::create_dirs(*rs_object); } void ConfigPaths::set_cache_file(const Filepath& new_cachefile) { newsboat::configpaths::bridged::set_cache_file(*rs_object, new_cachefile); } Filepath ConfigPaths::url_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::url_file(*rs_object, *path); return path; } Filepath ConfigPaths::cache_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::cache_file(*rs_object, *path); return path; } Filepath ConfigPaths::config_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::config_file(*rs_object, *path); return path; } Filepath ConfigPaths::lock_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::lock_file(*rs_object, *path); return path; } Filepath ConfigPaths::queue_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::queue_file(*rs_object, *path); return path; } Filepath ConfigPaths::search_history_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::search_history_file(*rs_object, *path); return path; } Filepath ConfigPaths::cmdline_history_file() const { auto path = filepath::bridged::create_empty(); newsboat::configpaths::bridged::cmdline_history_file(*rs_object, *path); return path; } } // namespace newsboat