You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
355 B
14 lines
355 B
8 months ago
|
#pragma once
|
||
|
|
||
|
#include <string_view>
|
||
|
|
||
|
#include <container/small_vector.hpp>
|
||
|
|
||
|
#include "implicit_function.hpp"
|
||
|
|
||
|
struct load_functions_result_t {
|
||
|
small_vector_mp<std::unique_ptr<ImplicitFunction>> functions{};
|
||
|
bool success{};
|
||
|
};
|
||
|
|
||
|
load_functions_result_t load_functions(const std::string_view& filename);
|