X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMEDLoader%2FMEDFileFieldGlobs.hxx;h=5744392ee6d923c3a17ed8d0d8bdce26424726b0;hb=b219559763498c4bd10c730cd3d2c62b1eed45db;hp=c39e19895401a0440eae6ef949e058195d125002;hpb=4e3de127a60f9ffb63abae1d17ed01f3f6711fd2;p=tools%2Fmedcoupling.git diff --git a/src/MEDLoader/MEDFileFieldGlobs.hxx b/src/MEDLoader/MEDFileFieldGlobs.hxx index c39e19895..5744392ee 100644 --- a/src/MEDLoader/MEDFileFieldGlobs.hxx +++ b/src/MEDLoader/MEDFileFieldGlobs.hxx @@ -72,17 +72,17 @@ namespace MEDCoupling std::string getFileName() const { return _file_name; } const MEDFileFieldLoc& getLocalizationFromId(int locId) const; const MEDFileFieldLoc& getLocalization(const std::string& locName) const; - const DataArrayInt *getProfileFromId(int pflId) const; - const DataArrayInt *getProfile(const std::string& pflName) const; + const DataArrayIdType *getProfileFromId(int pflId) const; + const DataArrayIdType *getProfile(const std::string& pflName) const; MEDFileFieldLoc& getLocalizationFromId(int locId); MEDFileFieldLoc& getLocalization(const std::string& locName); - DataArrayInt *getProfile(const std::string& pflName); - DataArrayInt *getProfileFromId(int pflId); + DataArrayIdType *getProfile(const std::string& pflName); + DataArrayIdType *getProfileFromId(int pflId); void killProfileIds(const std::vector& pflIds); void killLocalizationIds(const std::vector& locIds); void killStructureElementsInGlobs(); // - void appendProfile(DataArrayInt *pfl); + void appendProfile(DataArrayIdType *pfl); void appendLoc(const std::string& locName, INTERP_KERNEL::NormalizedCellType geoType, const std::vector& refCoo, const std::vector& gsCoo, const std::vector& w); // static std::string CreateNewNameNotIn(const std::string& prefix, const std::vector& namesToAvoid); @@ -91,7 +91,7 @@ namespace MEDCoupling MEDFileFieldGlobs(); ~MEDFileFieldGlobs(); protected: - std::vector< MCAuto > _pfls; + std::vector< MCAuto > _pfls; std::vector< MCAuto > _locs; std::string _file_name; }; @@ -154,14 +154,14 @@ namespace MEDCoupling MEDLOADER_EXPORT const MEDFileFieldLoc& getLocalization(const std::string& locName) const; MEDLOADER_EXPORT MEDFileFieldLoc& getLocalizationFromId(int locId); MEDLOADER_EXPORT MEDFileFieldLoc& getLocalization(const std::string& locName); - MEDLOADER_EXPORT const DataArrayInt *getProfile(const std::string& pflName) const; - MEDLOADER_EXPORT const DataArrayInt *getProfileFromId(int pflId) const; - MEDLOADER_EXPORT DataArrayInt *getProfile(const std::string& pflName); - MEDLOADER_EXPORT DataArrayInt *getProfileFromId(int pflId); + MEDLOADER_EXPORT const DataArrayIdType *getProfile(const std::string& pflName) const; + MEDLOADER_EXPORT const DataArrayIdType *getProfileFromId(int pflId) const; + MEDLOADER_EXPORT DataArrayIdType *getProfile(const std::string& pflName); + MEDLOADER_EXPORT DataArrayIdType *getProfileFromId(int pflId); MEDLOADER_EXPORT void killProfileIds(const std::vector& pflIds); MEDLOADER_EXPORT void killLocalizationIds(const std::vector& locIds); // - MEDLOADER_EXPORT void appendProfile(DataArrayInt *pfl); + MEDLOADER_EXPORT void appendProfile(DataArrayIdType *pfl); MEDLOADER_EXPORT void appendLoc(const std::string& locName, INTERP_KERNEL::NormalizedCellType geoType, const std::vector& refCoo, const std::vector& gsCoo, const std::vector& w); protected: MEDFileFieldGlobs *contentNotNull();