Salome HOME
simplifications
[modules/shaper.git] / src / Config / Config_ValidatorReader.h
index d6ee2fc550d09bdced54df1eeb2bf6869c173ad8..c57a0a6de4cff824f2d62ba6588d11384a1de78c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef CONFIG_VALIDATORREADER_H_
@@ -40,9 +39,16 @@ 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; }
+
+  // for correct SWIG wrapping
+  using Config_XMLReader::readAll;
+
  protected:
   /*!
    * \brief Allows to customize reader's behavior for a node. Virtual.
@@ -68,6 +74,7 @@ class Config_ValidatorReader : public Config_XMLReader
 
  private:
   std::string myCurrentWidget;
+  std::string myExtFeatureId;
 };
 
 #endif /* CONFIG_VALIDATORREADER_H_ */