Salome HOME
Ability for plugins to manage state (on/off) of their features added
[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 class ModuleBase_SelectionValidator : public ModelAPI_Validator
19 {
20  public:
21   virtual bool isValid(const ModuleBase_ISelection* theSelection) const = 0;
22   virtual bool isValid(const ModuleBase_ISelection* theSelection,
23                        const std::list<std::string>& theArguments) const
24   {
25     return isValid(theSelection);
26   }
27 };
28
29 #endif