Salome HOME
Update classes documentation
[modules/shaper.git] / src / ModuleBase / ModuleBase_ResultPrs.h
index 165406ec294928b040d3911c521c86409797efc8..7ed3db9ccfd5220c6927fd3517e0c73eeb9a5771 100644 (file)
@@ -25,11 +25,19 @@ DEFINE_STANDARD_HANDLE(ModuleBase_BRepOwner, StdSelect_BRepOwner)
 class ModuleBase_BRepOwner: public StdSelect_BRepOwner
 {
 public:
+  /// Constructor
+  /// \param aShape an owner shape
+  /// \param aPriority drawig priority
+  /// \param ComesFromDecomposition decomposition flag
   ModuleBase_BRepOwner(const TopoDS_Shape& aShape, 
     const Standard_Integer aPriority = 0, 
     const Standard_Boolean ComesFromDecomposition = Standard_False)
     : StdSelect_BRepOwner(aShape, aPriority, ComesFromDecomposition) {}
 
+  /// Highlight the presentation with the given color
+  /// \param aPM a presentations manager
+  /// \param aCol a color
+  /// \param aMode a drawing mode
   virtual void HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& aPM, 
     const Quantity_NameOfColor aCol, const Standard_Integer aMode = 0)
   {  Selectable()->HilightOwnerWithColor(aPM, aCol, this); }