X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_ValidatorReader.h;h=c57a0a6de4cff824f2d62ba6588d11384a1de78c;hb=b3431dc6aec2a17936648af6eabd3df1a2b2affc;hp=d4cdd39407069f4719e9fc8bd500c0718f1fd639;hpb=c4eab94a20a0d93100549a210582d46409fec1cc;p=modules%2Fshaper.git diff --git a/src/Config/Config_ValidatorReader.h b/src/Config/Config_ValidatorReader.h index d4cdd3940..c57a0a6de 100644 --- a/src/Config/Config_ValidatorReader.h +++ b/src/Config/Config_ValidatorReader.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 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 @@ -39,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. @@ -67,6 +74,7 @@ class Config_ValidatorReader : public Config_XMLReader private: std::string myCurrentWidget; + std::string myExtFeatureId; }; #endif /* CONFIG_VALIDATORREADER_H_ */