Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Validators.h
1 // File:        SketchPlugin_Validators.h
2 // Created:     01 Aug 2014
3 // Author:      Vitaly SMETANNIKOV
4
5 #ifndef EXCHANGEPLUGIN_VALIDATORS_H
6 #define EXCHANGEPLUGIN_VALIDATORS_H
7
8 #include "ExchangePlugin.h"
9 #include <ModelAPI_AttributeValidator.h>
10
11 class ExchangePlugin_ImportFormatValidator : public ModelAPI_AttributeValidator
12 {
13  public:
14   virtual bool isValid(const FeaturePtr& theFeature,
15                        const std::list<std::string>& theArguments,
16                        const ObjectPtr& theObject) const;
17
18 };
19
20 #endif