X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Data.h;h=40fc32d96eefd22e3d174cbe29390f0f3dd39b8d;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=9f26d8de1050bd4a25b85f481e00f243534c7906;hpb=d83e80be12739ea2d4f3101fabab8d2b2ba40313;p=modules%2Fshaper.git diff --git a/src/Model/Model_Data.h b/src/Model/Model_Data.h index 9f26d8de1..40fc32d96 100644 --- a/src/Model/Model_Data.h +++ b/src/Model/Model_Data.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -96,16 +97,21 @@ class Model_Data : public ModelAPI_Data friend class Model_SelectionNaming; friend class Model_ResultConstruction; friend class Model_ResultBody; + friend class Model_Tools; public: /// The simplest constructor. "setLabel" must be called just after to initialize correctly. Model_Data(); /// Returns the name of the feature visible by the user in the object browser - MODEL_EXPORT virtual std::string name(); + MODEL_EXPORT virtual std::wstring name(); /// Defines the name of the feature visible by the user in the object browser - MODEL_EXPORT virtual void setName(const std::string& theName); + MODEL_EXPORT virtual void setName(const std::wstring& theName); /// Return \c true if the object has been renamed by the user MODEL_EXPORT virtual bool hasUserDefinedName() const; + /// Returns version of the feature (empty string if not applicable) + MODEL_EXPORT virtual std::string version(); + /// Initialize the version of the feature + MODEL_EXPORT virtual void setVersion(const std::string& theVersion); /// Returns the attribute that references to another document MODEL_EXPORT virtual std::shared_ptr document(const std::string& theID); /// Returns the attribute that contains real value with double precision @@ -150,6 +156,9 @@ class Model_Data : public ModelAPI_Data /// Returns the attribute that contains string values array MODEL_EXPORT virtual std::shared_ptr tables(const std::string& theID); + /// Returns the attribute that contains image + MODEL_EXPORT virtual std::shared_ptr + image(const std::string& theID); /// Returns the generic attribute by identifier /// \param theID identifier of the attribute