mpd/src/StateFileConfig.hxx

29 lines
546 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2018-07-17 23:27:50 +02:00
#ifndef MPD_STATE_FILE_CONFIG_HXX
#define MPD_STATE_FILE_CONFIG_HXX
#include "fs/AllocatedPath.hxx"
#include "event/Chrono.hxx"
2018-07-17 23:27:50 +02:00
struct ConfigData;
struct StateFileConfig {
static constexpr Event::Duration DEFAULT_INTERVAL = std::chrono::minutes(2);
2018-07-17 23:27:50 +02:00
AllocatedPath path;
Event::Duration interval;
2018-07-17 23:27:50 +02:00
bool restore_paused;
2018-07-17 23:27:50 +02:00
explicit StateFileConfig(const ConfigData &config);
bool IsEnabled() const noexcept {
return !path.IsNull();
}
};
#endif