]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Config/Config_ValidatorReader.h
Salome HOME
Provide On Plane filter and reading of validators for filters GUI definition
[modules/shaper.git] / src / Config / Config_ValidatorReader.h
index d4cdd39407069f4719e9fc8bd500c0718f1fd639..dac03e09086e2990071eae7c1d60f5d0ca44d72f 100644 (file)
@@ -39,9 +39,13 @@ class Config_ValidatorReader : public Config_XMLReader
    * Constructor
    * \param theXmlFile - full path to the xml file which will be processed by the reader
    */
-  CONFIG_EXPORT Config_ValidatorReader(const std::string& theXmlFile);
+  CONFIG_EXPORT Config_ValidatorReader(const std::string& theXmlFile, bool isXMLContent = false);
   CONFIG_EXPORT virtual ~Config_ValidatorReader();
 
+
+  /// Set feature ID for cases when XML for validators is parsed from memory
+  CONFIG_EXPORT void setFeatureId(const std::string& theId) { myExtFeatureId = theId; }
+
  protected:
   /*!
    * \brief Allows to customize reader's behavior for a node. Virtual.
@@ -67,6 +71,7 @@ class Config_ValidatorReader : public Config_XMLReader
 
  private:
   std::string myCurrentWidget;
+  std::string myExtFeatureId;
 };
 
 #endif /* CONFIG_VALIDATORREADER_H_ */