// Copyright(C) 1999-2020, 2022 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 #pragma once #include "vtk_ioss_mangle.h" #include "Ioss_EntityType.h" // for EntityType, etc #include // for EntityBlock #include // for Property #include // for size_t #include // for int64_t #include // for string namespace Ioss { class DatabaseIO; } // namespace Ioss namespace Ioss { class Field; } // namespace Ioss namespace Ioss { /** \brief A collection of element edges with the same topology. */ class EdgeBlock : public EntityBlock { public: EdgeBlock(DatabaseIO *io_database, const std::string &my_name, const std::string &edge_type, int64_t number_edges); EdgeBlock(const EdgeBlock &) = default; ~EdgeBlock() override; std::string type_string() const override { return "EdgeBlock"; } std::string short_type_string() const override { return "edgeblock"; } std::string contains_string() const override { return "Edge"; } EntityType type() const override { return EDGEBLOCK; } // Handle implicit properties -- These are calcuated from data stored // in the grouping entity instead of having an explicit value assigned. // An example would be 'edge_block_count' for a region. Property get_implicit_property(const std::string &my_name) const override; protected: int64_t internal_get_field_data(const Field &field, void *data, size_t data_size) const override; int64_t internal_put_field_data(const Field &field, void *data, size_t data_size) const override; }; } // namespace Ioss