Salome HOME
Fix compilation errors (part 2)
[modules/shaper.git] / src / GeomAPI / GeomAPI_ICustomPrs.h
index de9c6d299f5dbb359aee66febcb07473c2003c73..c249b11c3d3022cc9cf9358ac3532a00ff00c3c5 100644 (file)
 #include "GeomAPI_AISObject.h"
 
 #include <vector>
-/**
-* Interface of a class which can provide specific customization of
-* object presentation
-*/ 
+
 class ModelAPI_Result;
 
+/** \class GeomAPI_ICustomPrs
+ *  \ingroup DataModel
+ *  \brief Interface of a class which can provide specific customization of
+ *         object presentation
+ */
 class GeomAPI_ICustomPrs
 {
 public:
   GEOMAPI_EXPORT virtual ~GeomAPI_ICustomPrs();
 
   /// Modifies the given presentation in the custom way.
-  virtual bool customisePresentation(std::shared_ptr<ModelAPI_Result> theResult, AISObjectPtr thePrs,
+  virtual bool customisePresentation(std::shared_ptr<ModelAPI_Result> theResult,
+                                     AISObjectPtr thePrs,
                                      std::shared_ptr<GeomAPI_ICustomPrs> theDefaultPrs) = 0;
 };