ClickHouse/src/Common/getResource.h
2021-12-24 12:25:27 +03:00

8 lines
237 B
C++

#pragma once
#include <string_view>
/// Get resource from binary if exists. Otherwise return empty string view.
/// Resources are data that is embedded into executable at link time.
std::string_view getResource(std::string_view name);