Salome HOME
Code documentation update
[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 * A validator of selection
20 */
21 class ModuleBase_SelectionValidator : public ModelAPI_Validator
22 {
23  public:
24    /// Returns True if selection is valid
25    /// \param theSelection selection instance
26   virtual bool isValid(const ModuleBase_ISelection* theSelection) const = 0;
27
28    /// Returns True if selection is valid
29    /// \param theSelection selection instance
30    /// \param theArguments list of arguments
31   virtual bool isValid(const ModuleBase_ISelection* theSelection,
32                        const std::list<std::string>& theArguments) const
33   {
34     return isValid(theSelection);
35   }
36 };
37
38 #endif