From b14c630ce9d690b10a11b14efa3ed26f5ad93a82 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 16 Apr 2023 21:40:53 +0200 Subject: [PATCH] Scheduling update for 0.28.8 --- src/db/db/gsiDeclDbCell.cc | 12 ++++++------ src/db/db/gsiDeclDbLayout.cc | 6 +++--- src/db/db/gsiDeclDbMetaInfo.cc | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/db/db/gsiDeclDbCell.cc b/src/db/db/gsiDeclDbCell.cc index 4acfc278b..ecff73f45 100644 --- a/src/db/db/gsiDeclDbCell.cc +++ b/src/db/db/gsiDeclDbCell.cc @@ -1834,19 +1834,19 @@ Class decl_Cell ("db", "Cell", "@brief Adds meta information to the cell\n" "See \\LayoutMetaInfo for details about cells and meta information.\n" "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::method_ext ("clear_meta_info", &cell_clear_meta_info, "@brief Clears the meta information of the cell\n" "See \\LayoutMetaInfo for details about cells and meta information.\n" "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::method_ext ("remove_meta_info", &cell_remove_meta_info, gsi::arg ("name"), "@brief Removes meta information from the cell\n" "See \\LayoutMetaInfo for details about cells and meta information.\n" "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::method_ext ("meta_info_value", &cell_meta_info_value, gsi::arg ("name"), "@brief Gets the meta information value for a given name\n" @@ -1855,7 +1855,7 @@ Class decl_Cell ("db", "Cell", "If no meta information with the given name exists, a nil value will be returned.\n" "A more generic version that delivers all fields of the meta information is \\meta_info.\n" "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::method_ext ("meta_info", &cell_meta_info, gsi::arg ("name"), "@brief Gets the meta information for a given name\n" @@ -1863,13 +1863,13 @@ Class decl_Cell ("db", "Cell", "\n" "If no meta information with the given name exists, a default object with empty fields will be returned.\n" "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::iterator_ext ("each_meta_info", &cell_each_meta_info, "@brief Iterates over the meta information of the cell\n" "See \\LayoutMetaInfo for details about cells and meta information.\n" "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::method_ext ("write", &write_simple, gsi::arg ("file_name"), "@brief Writes the cell to a layout file\n" diff --git a/src/db/db/gsiDeclDbLayout.cc b/src/db/db/gsiDeclDbLayout.cc index d82c7c464..c3734d715 100644 --- a/src/db/db/gsiDeclDbLayout.cc +++ b/src/db/db/gsiDeclDbLayout.cc @@ -1056,7 +1056,7 @@ Class decl_Layout ("db", "Layout", "@brief Clears the meta information of the layout\n" "See \\LayoutMetaInfo for details about layouts and meta information." "\n" - "This method has been introduced in version 0.28.7." + "This method has been introduced in version 0.28.8." ) + gsi::method ("remove_meta_info", static_cast (&db::Layout::remove_meta_info), gsi::arg ("name"), "@brief Removes meta information from the layout\n" @@ -1071,7 +1071,7 @@ Class decl_Layout ("db", "Layout", "If no meta information with the given name exists, a nil value will be returned.\n" "A more generic version that delivers all fields of the meta information is \\meta_info.\n" "\n" - "This method has been introduced in version 0.25. Starting with version 0.28.7, the value is of variant type instead of string only.\n" + "This method has been introduced in version 0.25. Starting with version 0.28.8, the value is of variant type instead of string only.\n" ) + gsi::method_ext ("meta_info", &layout_get_meta_info, gsi::arg ("name"), "@brief Gets the meta information for a given name\n" @@ -1079,7 +1079,7 @@ Class decl_Layout ("db", "Layout", "\n" "If no meta information with the given name exists, a default object with empty fields will be returned.\n" "\n" - "This method has been introduced in version 0.28.7.\n" + "This method has been introduced in version 0.28.8.\n" ) + gsi::iterator_ext ("each_meta_info", &layout_each_meta_info, "@brief Iterates over the meta information of the layout\n" diff --git a/src/db/db/gsiDeclDbMetaInfo.cc b/src/db/db/gsiDeclDbMetaInfo.cc index 1e182805e..d4161b0e6 100644 --- a/src/db/db/gsiDeclDbMetaInfo.cc +++ b/src/db/db/gsiDeclDbMetaInfo.cc @@ -81,7 +81,7 @@ Class decl_LayoutMetaInfo ("db", "LayoutMetaInfo", "@param description An optional description text\n" "@param persisted If true, the meta information will be persisted in some file formats, like GDS2\n" "\n" - "The 'persisted' attribute has been introduced in version 0.28.7.\n" + "The 'persisted' attribute has been introduced in version 0.28.8.\n" ) + gsi::method_ext ("name", &layout_meta_get_name, "@brief Gets the name of the layout meta info object\n" @@ -103,11 +103,11 @@ Class decl_LayoutMetaInfo ("db", "LayoutMetaInfo", ) + gsi::method_ext ("persisted", &layout_meta_get_persisted, "@brief Gets a value indicating whether the meta information will be persisted\n" - "This predicate was introduced in version 0.28.7.\n" + "This predicate was introduced in version 0.28.8.\n" ) + gsi::method_ext ("persisted=", &layout_meta_set_persisted, "@brief Sets a value indicating whether the meta information will be persisted\n" - "This predicate was introduced in version 0.28.7.\n" + "This predicate was introduced in version 0.28.8.\n" ), "@brief A piece of layout meta information\n" "Layout meta information is basically additional data that can be attached to a layout. " @@ -121,7 +121,7 @@ Class decl_LayoutMetaInfo ("db", "LayoutMetaInfo", "See also \\Layout#each_meta_info, \\Layout#meta_info_value, \\Layout#meta_info and \\Layout#remove_meta_info as " "well as the corresponding \\Cell methods.\n" "\n" - "This class has been introduced in version 0.25 and was extended in version 0.28.7." + "This class has been introduced in version 0.25 and was extended in version 0.28.8." ); }