32class ARCANE_CORE_EXPORT ItemFamilyItemListChangedEventArgs
34 friend mesh::DynamicMeshKindInfos;
39 ItemFamilyItemListChangedEventArgs() =
default;
41 : m_item_family(item_family)
42 , m_local_id(local_id)
43 , m_unique_id(unique_id)
48 IItemFamily* itemFamily()
const {
return m_item_family; }
49 Int32 localId()
const {
return m_local_id; }
50 Int64 uniqueId()
const {
return m_unique_id; }
51 bool isAdd()
const {
return m_is_add; }
55 void setIsAdd(
bool v) { m_is_add = v; }
60 Int32 m_local_id = NULL_ITEM_LOCAL_ID;
61 Int64 m_unique_id = NULL_ITEM_UNIQUE_ID;
62 bool m_is_add =
false;