Salome HOME
It provides error messages for validators.
[modules/shaper.git] / src / GeomValidators / GeomValidators_DifferentShapes.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomValidators_DifferentShapes.h
4 // Created:     2 Feb 2015
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef GeomValidators_DifferentShapes_H
8 #define GeomValidators_DifferentShapes_H
9
10 #include <ModelAPI.h>
11
12 #include <ModelAPI_AttributeValidator.h>
13 #include <ModelAPI_Attribute.h>
14
15 /**
16  * Generic validator for any attribute of a feature.
17  */
18 class GeomValidators_DifferentShapes : public ModelAPI_AttributeValidator
19 {
20 public:
21   /// returns True if the attribute is valid. It checks whether the feature of the attribute
22   /// does not contain a selection attribute filled with the same shape
23   /// \param theAttribute an attribute to check
24   /// \param theArguments a filter parameters
25   MODELAPI_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
26                                        const std::list<std::string>& theArguments,
27                                        std::string& theError) const;
28 };
29
30 #endif