7#include "arcane/geometry/impl/ItemGroupGeometryProperty.h"
15namespace Arcane::Numerics
36bool ItemGroupGeometryProperty::
37hasProperty(
const IGeometryProperty::eProperty p)
const
39 return (defined & p) == p;
43ItemGroupGeometryProperty::
44getStorage(
const IGeometryProperty::eProperty p)
const
46 StorageInfos::const_iterator ifinder = storages.find(p);
47 if (ifinder == storages.end())
48 return IGeometryProperty::PNoStorage;
50 return ifinder->second.storageType;
53void ItemGroupGeometryProperty::
58 for (StorageInfos::iterator i = storages.begin(); i != storages.end(); ++i) {
59 i->second.usageVarCount = 0;
60 i->second.usageMapCount = 0;
virtual ~ItemGroupGeometryProperty()
ItemGroupGeometryProperty()
Int32 Integer
Type representing an integer.