simplify blueprint implementation with helpers

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
folling 2023-12-27 12:52:27 +01:00 committed by Folling
parent 224c303ffb
commit 497f96a574
Signed by: folling
SSH key fingerprint: SHA256:S9qEx5WCFFLK49tE/LKnKuJYM5sw+++Dn6qJbbyxnCY
6 changed files with 200 additions and 218 deletions

View file

@ -26,7 +26,7 @@ auto IkarusProject::get_db() const -> sqlitecpp::Connection const * {
return _db.get();
}
auto IkarusProject::get_function_context() -> FunctionContext * {
auto IkarusProject::get_function_context() -> IkarusFunctionContext * {
return &_function_contexts.emplace_back(this);
}