12#ifndef ARCANE_CORE_ITEMFAMILYITEMLISTCHANGEDARGS_H
13#define ARCANE_CORE_ITEMFAMILYITEMLISTCHANGEDARGS_H
17#include "arcane/utils/ArrayView.h"
42 : m_item_family(item_family)
43 , m_local_id(local_id)
44 , m_unique_id(unique_id)
49 IItemFamily* itemFamily()
const {
return m_item_family; }
50 Int32 localId()
const {
return m_local_id; }
51 Int64 uniqueId()
const {
return m_unique_id; }
52 bool isAdd()
const {
return m_is_add; }
56 void setIsAdd(
bool v) { m_is_add = v; }
60 IItemFamily* m_item_family =
nullptr;
61 Int32 m_local_id = NULL_ITEM_LOCAL_ID;
62 Int64 m_unique_id = NULL_ITEM_UNIQUE_ID;
63 bool m_is_add =
false;
Declarations of types used in Arcane.
Interface of an entity family.
ItemFamilyItemListChangedEventArgs()=default
Constructor. Only for DynamicMeshKindInfos.
Mesh information for a given entity kind.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
std::int64_t Int64
Signed integer type of 64 bits.
std::int32_t Int32
Signed integer type of 32 bits.