33class ARCANE_CORE_EXPORT ItemFamilyItemListChangedEventArgs
35 friend mesh::DynamicMeshKindInfos;
40 ItemFamilyItemListChangedEventArgs() =
default;
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; }
61 Int32 m_local_id = NULL_ITEM_LOCAL_ID;
62 Int64 m_unique_id = NULL_ITEM_UNIQUE_ID;
63 bool m_is_add =
false;