From cf850d984301af8e1e269606e162337287dd5e16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Stoj=C5=A1in?= Date: Mon, 23 Sep 2024 16:43:24 +0200 Subject: [PATCH] Rename devue_model_col to devue_model_pack --- source/src/devue_plugin.cpp | 2 +- source/src/devue_plugin.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/src/devue_plugin.cpp b/source/src/devue_plugin.cpp index b05ade0..5903e9d 100644 --- a/source/src/devue_plugin.cpp +++ b/source/src/devue_plugin.cpp @@ -30,7 +30,7 @@ devue_plugin::devue_plugin() { } // Implement model importing -devue::sdk::devue_model_col devue_plugin::impl_import_model(const std::filesystem::path& filepath) { +devue::sdk::devue_model_pack devue_plugin::impl_import_model(const std::filesystem::path& filepath) { throw std::runtime_error("Not implemented"); } diff --git a/source/src/devue_plugin.hpp b/source/src/devue_plugin.hpp index b615044..c175bed 100644 --- a/source/src/devue_plugin.hpp +++ b/source/src/devue_plugin.hpp @@ -8,8 +8,8 @@ namespace devue::plugins { devue_plugin(); protected: - devue::sdk::devue_model_col impl_import_model(const std::filesystem::path& filepath); - devue::sdk::devue_image impl_import_image(const std::filesystem::path& filepath); + devue::sdk::devue_model_pack impl_import_model(const std::filesystem::path& filepath); + devue::sdk::devue_image impl_import_image(const std::filesystem::path& filepath); }; }