X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_ValidatorReader.h;h=6124664ad1e8641d3608f5a5551e7a12c3cf1ba1;hb=d04ea67117f609da08de8ae7631e8f2f844ea437;hp=d6ee2fc550d09bdced54df1eeb2bf6869c173ad8;hpb=7074394f8f08413d885f63be01df6bd5007b868c;p=modules%2Fshaper.git diff --git a/src/Config/Config_ValidatorReader.h b/src/Config/Config_ValidatorReader.h index d6ee2fc55..6124664ad 100644 --- a/src/Config/Config_ValidatorReader.h +++ b/src/Config/Config_ValidatorReader.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2020 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 @@ -12,10 +12,9 @@ // // 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 +// 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_ */