Salome HOME
ENV: Windows porting
[modules/gui.git] / src / SalomeApp / SalomeApp_DataOwner.cxx
index a3b6963782cee5066ec421508058cce1921114f5..4035b214f9a0a6c4ddfe9d970c58e19c58f2488a 100644 (file)
@@ -6,14 +6,16 @@
 #include <typeinfo.h>
 #endif
 
-#include <iostream.h>
+#include <iostream>
 
+/*!Constructor. Initialize by \a theEntry.*/
 SalomeApp_DataOwner
 ::SalomeApp_DataOwner( const QString& theEntry ): 
   myEntry( theEntry )
 {
 }
 
+/*!Constructor. Initialize by \a SALOME_InteractiveObject.*/
 SalomeApp_DataOwner
 ::SalomeApp_DataOwner( const Handle(SALOME_InteractiveObject)& theIO ):
   myEntry(!theIO.IsNull()? theIO->getEntry(): ""),
@@ -21,11 +23,13 @@ SalomeApp_DataOwner
 {
 }
 
+/*!Destructor. Do nothing.*/
 SalomeApp_DataOwner
 ::~SalomeApp_DataOwner()
 {
 }
 
+/*!Checks: Is current data owner equal \a obj.*/
 bool
 SalomeApp_DataOwner
 ::isEqual( const SUIT_DataOwner& obj ) const
@@ -35,6 +39,7 @@ SalomeApp_DataOwner
   return other && entry() == other->entry();
 }
 
+/*!Gets entry.*/
 QString
 SalomeApp_DataOwner
 ::entry() const
@@ -42,6 +47,7 @@ SalomeApp_DataOwner
   return myEntry;
 }
 
+/*!Gets SALOME_InteractiveObject.*/
 const Handle(SALOME_InteractiveObject)&
 SalomeApp_DataOwner
 ::IO() const