Salome HOME
Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeStudyProperties.hxx
1 //  Copyright (C) 2007-2008  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 //  File   : SALOMEDS_AttributeStudyProperties.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef SALOMEDS_AttributeStudyProperties_HeaderFile
27 #define SALOMEDS_AttributeStudyProperties_HeaderFile
28
29 #include "SALOMEDSClient_AttributeStudyProperties.hxx"
30 #include "SALOMEDS_GenericAttribute.hxx"
31 #include "SALOMEDSImpl_AttributeStudyProperties.hxx"
32
33 #include <vector>
34 #include <string>
35
36 // IDL headers
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SALOMEDS)
39 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
40
41 #ifdef GetUserName
42 #undef GetUserName
43 #endif
44
45 class Standard_EXPORT SALOMEDS_AttributeStudyProperties: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeStudyProperties
46 {
47 public:
48   
49   SALOMEDS_AttributeStudyProperties(SALOMEDSImpl_AttributeStudyProperties* theAttr);
50   SALOMEDS_AttributeStudyProperties(SALOMEDS::AttributeStudyProperties_ptr theAttr);
51   ~SALOMEDS_AttributeStudyProperties();
52
53   virtual void SetUserName(const std::string& theName);
54   virtual std::string GetUserName();
55   virtual void SetCreationDate(int theMinute, int theHour, int theDay, int theMonth, int theYear);
56   virtual bool GetCreationDate(int& theMinute, int& theHour, int& theDay, int& theMonth, int& theYear);
57   virtual void SetCreationMode(const std::string& theMode);
58   virtual std::string GetCreationMode();
59   virtual void SetModified(int theModified);
60   virtual bool IsModified();
61   virtual int GetModified();
62   virtual void SetLocked(bool theLocked);
63   virtual bool IsLocked();
64   virtual void SetModification(const std::string& theName,
65                                int theMinute,
66                                int theHour,
67                                int theDay,
68                                int theMonth,
69                                int theYear);
70   virtual void GetModificationsList(std::vector<std::string>& theNames,
71                                     std::vector<int>& theMinutes,
72                                     std::vector<int>& theHours,
73                                     std::vector<int>& theDays,
74                                     std::vector<int>& theMonths,
75                                     std::vector<int>& theYears,
76                                     bool theWithCreator);
77
78 };
79
80
81 #endif