blob: 5372eb576d5806bdb855a518818388557f9eae53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "BaseFactory.h"
class AudioHeaderFactory : public BaseFactory {
public:
std::optional<std::shared_ptr<IParsedData>> parse(std::vector<uint8_t>& buffer, YAML::Node& data) override;
inline std::unordered_map<ExportType, std::shared_ptr<BaseExporter>> GetExporters() override {
return {};
}
};
|