// Copyright(C) 1999-2020 National Technology & Engineering Solutions // of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with // NTESS, the U.S. Government retains certain rights in this software. // // See packages/seacas/LICENSE for details #include // for IntVector #include #include #include #include #include #include #include "Ioss_EntityBlock.h" #include "Ioss_PropertyManager.h" namespace Ioss { class Field; } // namespace Ioss /** \brief Create an edge block. * * \param[in] io_database The database associated with the region containing the edge block. * \param[in] my_name The edge block's name. * \param[in] edge_type The name of the edge topology type for the edge block. * \param[in] number_edges The number of edges in the edge block. */ Ioss::EdgeBlock::EdgeBlock(Ioss::DatabaseIO *io_database, const std::string &my_name, const std::string &edge_type, int64_t number_edges) : Ioss::EntityBlock(io_database, my_name, edge_type, number_edges) { if (topology()->master_element_name() != edge_type && topology()->name() != edge_type) { // Maintain original edge type on output database if possible. properties.add(Ioss::Property("original_edge_type", edge_type)); } } Ioss::EdgeBlock::~EdgeBlock() = default; Ioss::Property Ioss::EdgeBlock::get_implicit_property(const std::string &my_name) const { return Ioss::EntityBlock::get_implicit_property(my_name); } int64_t Ioss::EdgeBlock::internal_get_field_data(const Ioss::Field &field, void *data, size_t data_size) const { return get_database()->get_field(this, field, data, data_size); } int64_t Ioss::EdgeBlock::internal_put_field_data(const Ioss::Field &field, void *data, size_t data_size) const { return get_database()->put_field(this, field, data, data_size); }