Salome HOME
Multi-selection widget to be used in the extrusion feature.
[modules/shaper.git] / src / ModelAPI / ModelAPI_RefAttrValidator.h
index 1e4d7bdddad8a029542f0a4fb04b14b9003ef880..087cff483c516d4c5a122e44c0182131b3d9ee0d 100644 (file)
 #include <ModelAPI_Attribute.h>
 #include <ModelAPI_AttributeValidator.h>
 
-/*
+/**\class ModelAPI_RefAttrValidator
+ * \ingroup DataModel
  * Used for filtering out the object that can be used for reference attribute value
  */
 class ModelAPI_RefAttrValidator : public ModelAPI_AttributeValidator
 {
 public:
-  //! Returns true if object is good for the feature attribute
-  virtual bool isValid(const FeaturePtr& theFeature, const std::list<std::string>& theArguments,
-                       const ObjectPtr& theObject) const = 0;
-
-  //! Returns true if the attribute is good for the feature attribute
-  virtual bool isValid(const FeaturePtr& theFeature, const std::list<std::string>& theArguments,
-                       const AttributePtr& theAttribute) const = 0;
-
 };
 
 #endif