Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultValidator.h
1 // File:        ModelAPI_ResultValidators.h
2 // Created:     23 July 2014
3 // Author:      Vitaly SMETANNIKOV
4
5 #ifndef ModelAPI_ResultValidators_H
6 #define ModelAPI_ResultValidators_H
7
8 #include "ModelAPI_Validator.h"
9 #include "ModelAPI_Object.h"
10
11 class ModelAPI_ResultValidator : public ModelAPI_Validator
12 {
13  public:
14   virtual bool isValid(const ObjectPtr theObject) const = 0;
15 };
16
17 #endif