From cfc1dc447c8bf6306de74d1fb1dba7943a1e1232 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 6 Sep 2025 00:24:54 +1000 Subject: plugin: namespace everything --- plugin/src/Caelestia/beattracker.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'plugin/src/Caelestia/beattracker.cpp') diff --git a/plugin/src/Caelestia/beattracker.cpp b/plugin/src/Caelestia/beattracker.cpp index 434c335..433ffab 100644 --- a/plugin/src/Caelestia/beattracker.cpp +++ b/plugin/src/Caelestia/beattracker.cpp @@ -7,6 +7,8 @@ #include #include +namespace caelestia { + BeatTracker::BeatTracker(uint_t sampleRate, uint_t hopSize, QObject* parent) : QObject(parent) , m_tempo(new_aubio_tempo("default", 1024, hopSize, sampleRate)) @@ -103,4 +105,6 @@ void BeatTracker::handleStateChanged(QtAudio::State state) const { break; } } -} \ No newline at end of file +} + +} // namespace caelestia -- cgit v1.2.3-freya