All checks were successful
Build (Arch Linux) / build (push) Successful in 3m10s
14 lines
205 B
C++
14 lines
205 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
namespace kuiper::resource
|
|
{
|
|
|
|
class index {
|
|
public:
|
|
static index from_file(const std::filesystem::path& index_path) noexcept;
|
|
};
|
|
|
|
} // namespace kuiper::resource
|