aboutsummaryrefslogtreecommitdiff
path: root/lib/embed.cpp
blob: 07af38f0e4fbc6ee645c6d6c250440533cb96f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "embed.h"

using namespace embed;

template <>
Resources<Compression::None>::Resources(const std::span<const unsigned char> &)
{
}

template <>
Resources<Compression::None>::~Resources() = default;

template <>
[[nodiscard]] std::vector<unsigned char> Resources<Compression::None>::decompress(const std::span<const unsigned char> &entry)
{
    return { entry.begin(), entry.end() };
}