mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-12 14:37:21 +03:00
11 lines
197 B
C++
11 lines
197 B
C++
// Copyright (c) Kuba Szczodrzyński 2022-1-15.
|
|
|
|
#pragma once
|
|
|
|
#include "BaseContainer.h"
|
|
|
|
class AudioContainers {
|
|
public:
|
|
static std::unique_ptr<BaseContainer> create(const char *mimeType);
|
|
};
|