Salome HOME
Issue #412: Crash on delete sketch line with constraints
[modules/shaper.git] / src / ModuleBase / ModuleBase_SelectionValidator.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_SelectionValidator.h
4 // Created:     8 Jul 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef ModuleBase_SelectionValidator_H
8 #define ModuleBase_SelectionValidator_H
9
10 #include "ModuleBase.h"
11 #include "ModuleBase_ISelection.h"
12
13 #include <ModelAPI_Validator.h>
14
15 #include <list>
16 #include <string>
17
18 /**
19 * \ingroup Validators
20 * A validator of selection
21 */
22 class ModuleBase_SelectionValidator : public ModelAPI_Validator
23 {
24  public:
25    /// Returns True if selection is valid
26    /// \param theSelection selection instance
27   virtual bool isValid(const ModuleBase_ISelection* theSelection) const = 0;
28
29    /// Returns True if selection is valid
30    /// \param theSelection selection instance
31    /// \param theArguments list of arguments
32   virtual bool isValid(const ModuleBase_ISelection* theSelection,
33                        const std::list<std::string>& theArguments) const
34   {
35     return isValid(theSelection);
36   }
37 };
38
39 #endif