Salome HOME
CCAR: some optimisations for SALOMEDS
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeParameter.hxx
index f23ccff67f7149071f08573fa00a5d8958c2d7a7..d55f70724c2038bab4bb9c1da224b83fad9a6bab 100644 (file)
@@ -1,4 +1,4 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+//  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -19,6 +19,7 @@
 //
 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 //  File   : SALOMEDSImpl_AttributeIOR.hxx
 //  Author : Sergey RUIN
 //  Module : SALOME
@@ -65,45 +66,45 @@ public:
       
   void SetInt(const std::string& theID, const int& theValue);
   int GetInt(const std::string& theID);
-         
+          
   void SetReal(const std::string& theID, const double& theValue);
   double GetReal(const std::string& theID);
-             
+              
   void SetString(const std::string& theID, const std::string& theValue);
   std::string GetString(const std::string& theID);
-                 
+                  
   void SetBool(const std::string& theID, const bool& theValue);
   bool GetBool(const std::string& theID);
-                     
+                      
   void SetRealArray(const std::string& theID, const std::vector<double>& theArray);
   std::vector<double> GetRealArray(const std::string& theID);
-                         
+                          
   void SetIntArray(const std::string& theID, const std::vector<int>& theArray);
   std::vector<int> GetIntArray(const std::string& theID);
-                             
+                              
   void SetStrArray(const std::string& theID, const std::vector<std::string>& theArray);
   std::vector<std::string> GetStrArray(const std::string& theID);
-                                 
+                                  
   bool IsSet(const std::string& theID, const Parameter_Types theType);
  
   bool RemoveID(const std::string& theID, const Parameter_Types theType);
-                     
+                      
   SALOMEDSImpl_AttributeParameter* GetFather();
   bool HasFather();
   bool IsRoot();
-                                           
+                                            
   std::vector<std::string> GetIDs(const Parameter_Types theType);
-                                             
+                                              
   void Clear();
-                                               
+                                                
   virtual std::string Save();
   virtual void Load(const std::string& theValue);
-                                                   
+                                                    
   const std::string& ID() const;
   void Restore(DF_Attribute* with) ;
   DF_Attribute* NewEmpty() const;
   void Paste(DF_Attribute* into);
-                                                           
+                                                            
   ~SALOMEDSImpl_AttributeParameter() {}
 };