Salome HOME
updated copyright message
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_AttributeStudyProperties.hxx
index 50dde31347388220e2ed772d50f82d824088db51..f03b8ed90a5262b8d8e9102d06dfab6ca3789930 100644 (file)
@@ -1,26 +1,29 @@
-// Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-// 
+//
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either 
-// version 2.1 of the License.
-// 
-// This library is distributed in the hope that it will be useful 
-// but WITHOUT ANY WARRANTY; without even the implied warranty of 
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Lesser General Public License for more details.
 //
-// You should have received a copy of the GNU Lesser General Public  
-// License along with this library; if not, write to the Free Software 
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 //  File   : SALOMEDSClient_AttributeStudyProperties.hxx
 //  Author : Sergey RUIN
 //  Module : SALOME
-
+//
 #ifndef SALOMEDSClient_AttributeStudyProperties_HeaderFile
 #define SALOMEDSClient_AttributeStudyProperties_HeaderFile
 
@@ -45,19 +48,28 @@ public:
   virtual void SetLocked(bool theLocked) = 0;
   virtual bool IsLocked() = 0;
   virtual void SetModification(const std::string& theName,
-                              int theMinute,
-                              int theHour,
-                              int theDay,
-                              int theMonth,
-                              int theYear) = 0;
+                               int theMinute,
+                               int theHour,
+                               int theDay,
+                               int theMonth,
+                               int theYear) = 0;
   virtual void GetModificationsList(std::vector<std::string>& theNames,
-                                   std::vector<int>& theMinutes,
-                                   std::vector<int>& theHours,
-                                   std::vector<int>& theDays,
-                                   std::vector<int>& theMonths,
-                                   std::vector<int>& theYears,
-                                   bool theWithCreator) = 0;
+                                    std::vector<int>& theMinutes,
+                                    std::vector<int>& theHours,
+                                    std::vector<int>& theDays,
+                                    std::vector<int>& theMonths,
+                                    std::vector<int>& theYears,
+                                    bool theWithCreator) = 0;
+  
+  virtual void SetUnits(const std::string& theUnits) = 0;
+  virtual std::string GetUnits() = 0;
+
+  virtual void SetComment(const std::string& theComment) = 0;
+  virtual std::string GetComment() = 0;
 
+  virtual std::vector<std::string> GetStoredComponents() = 0;
+  virtual std::string GetComponentVersion( const std::string& theComponent ) = 0;
+  virtual std::vector<std::string> GetComponentVersions( const std::string& theComponent ) = 0;
 };