]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Removed depricated methods Store and Restore from GenericAttribute interface T_22_03_05
authorsrn <srn@opencascade.com>
Tue, 22 Mar 2005 09:57:46 +0000 (09:57 +0000)
committersrn <srn@opencascade.com>
Tue, 22 Mar 2005 09:57:46 +0000 (09:57 +0000)
idl/SALOMEDS.idl
src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx

index 95578bd98f273f0958017cf7ee32f749c3642ee8..db7074134eacf1224b122d653be48f2df10fcc21 100644 (file)
@@ -912,10 +912,6 @@ Gets the list of open studies
 */
     void CheckLocked() raises (LockProtection);
 
-    string Store();
-
-    void Restore(in string theData);
-
     string Type();
 
     SObject GetSObject();
index c3c2406a21d93fae031a079285a8b291d9ce3bbc..4bd8461b1141ebfaf738b2190afdf94b98589612 100644 (file)
@@ -33,10 +33,6 @@ public:
   virtual Handle(TDF_Attribute) GetImpl() { return _impl; }
 
   static SALOMEDS::GenericAttribute_ptr CreateAttribute(const Handle(TDF_Attribute)& theAttr, CORBA::ORB_ptr theOrb);  
-
-  //SRN (Feb 14, 2005): Depricated, to be removed from IDL
-  virtual char* Store() {return ""; };
-  virtual void Restore(const char*) {};
 };
 
 #endif