Refactored namespaces

This commit is contained in:
emeric
2024-03-12 08:32:08 +01:00
parent 487960b413
commit 4b7c4295ec
501 changed files with 12605 additions and 12631 deletions
+4 -4
View File
@@ -19,9 +19,9 @@
#pragma once
#include "utils/String.hpp"
#include "core/String.hpp"
namespace API::Subsonic
namespace lms::api::subsonic
{
struct ProtocolVersion
{
@@ -34,9 +34,9 @@ namespace API::Subsonic
static inline constexpr std::string_view serverVersion{ "6" };
}
namespace StringUtils
namespace lms::core::stringUtils
{
template<>
std::optional<API::Subsonic::ProtocolVersion> readAs(std::string_view str);
std::optional<api::subsonic::ProtocolVersion> readAs(std::string_view str);
}