Salome HOME
Fix for bug 10438: Crash during Explode on Blocks operation (Global selection on...
[modules/gui.git] / src / SUIT / SUIT_DataOwner.cxx
index 767dd5220d2c34ecbcc6fa5306805d27369a66d5..3a85389bc00bbebdff8e40d8553ffc16c91c16bc 100755 (executable)
 // SUIT_DataOwner class
 //********************************************************************
 
-//====================================================================
-//! Constructor
-//====================================================================
+
+/*! Constructor*/
 SUIT_DataOwner::SUIT_DataOwner()
 {
 }
 
-//====================================================================
-//! Destructor
-//====================================================================
+/*! Destructor*/
 SUIT_DataOwner::~SUIT_DataOwner()
 {
 }
 
-//====================================================================
-//! operator== : compares two owners
-//====================================================================
+/*! operator== : compares two owners*/
 bool operator==( const SUIT_DataOwnerPtr& p1, const SUIT_DataOwnerPtr& p2 )
 {
   if ( !p1.isNull() && !p2.isNull() )
@@ -37,8 +32,10 @@ bool operator==( const SUIT_DataOwnerPtr& p1, const SUIT_DataOwnerPtr& p2 )
 }
 
 //********************************************************************
-// SUIT_DataOwnerPtrList class: implements value list with unique
-// items (uniqueness is provided by operator==())
+/*! \class SUIT_DataOwnerPtrList 
+ * implements value list with unique items (uniqueness is 
+ * provided by operator==())
+ */
 //********************************************************************
 
 //====================================================================