Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Validators.cpp
1 // File:        SketchPlugin_Validators.cpp
2 // Created:     01 Aug 2014
3 // Author:      Vitaly SMETANNIKOV
4
5 #include <ExchangePlugin_Validators.h>
6 #include <ModelAPI_Feature.h>
7 #include <ModelAPI_Object.h>
8 #include <ModelAPI_Session.h>
9
10 #include <list>
11 #include <string>
12
13
14 bool ExchangePlugin_ImportFormatValidator::isValid(
15   const AttributePtr& theAttribute, const std::list<std::string>& theArguments) const
16 {
17   SessionPtr aMgr = ModelAPI_Session::get();
18   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
19   return false;
20 }
21