Salome HOME
0021133: EDF 1605 ALL: Space in dump files instead of tabulations
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeStudyProperties.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SALOMEDSImpl_AttributeStudyProperties.hxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #ifndef _SALOMEDSImpl_AttributeStudyProperties_HeaderFile
28 #define _SALOMEDSImpl_AttributeStudyProperties_HeaderFile
29
30 #include "SALOMEDSImpl_Defines.hxx"
31 #include "DF_Attribute.hxx"
32 #include "DF_Label.hxx"
33 #include <string>
34 #include <vector>
35 #include "SALOMEDSImpl_GenericAttribute.hxx"
36
37 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_AttributeStudyProperties : public SALOMEDSImpl_GenericAttribute
38 {
39 public:
40   SALOMEDSImpl_AttributeStudyProperties();
41   ~SALOMEDSImpl_AttributeStudyProperties() {}
42
43   static const std::string& GetID();
44   const std::string&    ID() const;
45
46   static  SALOMEDSImpl_AttributeStudyProperties* Set(const DF_Label& label);
47
48   void Init();
49
50   virtual std::string Save();
51   virtual void Load(const std::string&);
52
53   void SetModification(const std::string& theUserName,
54     const int          theMinute,
55     const int          theHour,
56     const int          theDay,
57     const int          theMonth,
58     const int          theYear);
59   void GetModifications(std::vector<std::string>& theUserNames,
60     std::vector<int>&         theMinutes,
61     std::vector<int>&         theHours,
62     std::vector<int>&         theDays,
63     std::vector<int>&         theMonths,
64     std::vector<int>&         theYears) const;
65
66   std::string GetCreatorName() const;
67   bool GetCreationDate(int&           theMinute,
68     int&           theHour,
69     int&           theDay,
70     int&           theMonth,
71     int&           theYear) const;
72
73   void ChangeCreatorName(const std::string& theUserName);
74
75   void SetCreationMode(const int theMode);
76   int GetCreationMode() const;
77
78   void SetModified(const int theModified);
79   bool IsModified() const;
80   int GetModified() const;
81
82   void SetLocked(const bool theLocked);
83   bool IsLocked() const;
84   bool IsLockChanged(const bool theErase);
85
86   void Restore(DF_Attribute* with);
87   DF_Attribute* NewEmpty() const;
88   void Paste(DF_Attribute* into);
89
90 private:
91
92   std::vector<std::string> myUserName;
93   std::vector<int> myMinute;
94   std::vector<int> myHour;
95   std::vector<int> myDay;
96   std::vector<int> myMonth;
97   std::vector<int> myYear;
98   int myMode;
99   int myModified;
100   bool myLocked;
101   bool myLockChanged;
102
103 };
104
105 #endif