Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[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 class ModuleBase_SelectionValidator : public ModelAPI_Validator
16 {
17  public:
18   virtual bool isValid(const ModuleBase_ISelection* theSelection) const = 0;
19 };
20
21 #endif