From d45994268ffbead1d9312e73f08f548d5f5ed901 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 7 Mar 2023 12:07:31 +0100 Subject: [PATCH] system/PeriodClock: move to time/ --- src/mixer/Memento.hxx | 2 +- src/output/Control.hxx | 2 +- src/output/plugins/AlsaOutputPlugin.cxx | 2 +- src/{system => time}/PeriodClock.hxx | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{system => time}/PeriodClock.hxx (100%) diff --git a/src/mixer/Memento.hxx b/src/mixer/Memento.hxx index 9fa44e8a8..d862763cd 100644 --- a/src/mixer/Memento.hxx +++ b/src/mixer/Memento.hxx @@ -3,7 +3,7 @@ #pragma once -#include "system/PeriodClock.hxx" +#include "time/PeriodClock.hxx" class MultipleOutputs; class BufferedOutputStream; diff --git a/src/output/Control.hxx b/src/output/Control.hxx index eb07dccdb..761068021 100644 --- a/src/output/Control.hxx +++ b/src/output/Control.hxx @@ -9,7 +9,7 @@ #include "thread/Thread.hxx" #include "thread/Mutex.hxx" #include "thread/Cond.hxx" -#include "system/PeriodClock.hxx" +#include "time/PeriodClock.hxx" #include #include diff --git a/src/output/plugins/AlsaOutputPlugin.cxx b/src/output/plugins/AlsaOutputPlugin.cxx index 6f1c6be1f..3e3a6beb4 100644 --- a/src/output/plugins/AlsaOutputPlugin.cxx +++ b/src/output/plugins/AlsaOutputPlugin.cxx @@ -15,7 +15,7 @@ #include "../Error.hxx" #include "mixer/plugins/AlsaMixerPlugin.hxx" #include "pcm/Export.hxx" -#include "system/PeriodClock.hxx" +#include "time/PeriodClock.hxx" #include "thread/Mutex.hxx" #include "thread/Cond.hxx" #include "util/Manual.hxx" diff --git a/src/system/PeriodClock.hxx b/src/time/PeriodClock.hxx similarity index 100% rename from src/system/PeriodClock.hxx rename to src/time/PeriodClock.hxx