首次提交

This commit is contained in:
2026-08-07 16:21:44 +08:00
parent 396311246c
commit 1e903dfe1e
33 changed files with 5960 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <structive/property/extensions/presentation.hpp>
namespace structive::presentation {
Presentation_Info make_presentation_info(std::string_view key, std::string_view label, std::string_view description, std::string_view group, std::size_t order, bool has_order) noexcept {
return Presentation_Info{key, label.empty() ? key : label, description, group, order, has_order};
}
}