Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-02 08:51:48

0001 #ifndef XML_VALIDATOR_I_H
0002 #define XML_VALIDATOR_I_H
0003 
0004 /**
0005  * @file XMLValidatorI.h
0006  * @author Bryan BERTHOU (SPhN / CEA Saclay)
0007  * @date March 23, 2016
0008  * @version 1.0
0009  */
0010 
0011 #include <string>
0012 
0013 #include "../../BaseObject.h"
0014 
0015 namespace PARTONS {
0016 
0017 /**
0018  * @class XMLValidatorI
0019  *
0020  * @brief
0021  */
0022 class XMLValidatorI: public BaseObject {
0023 public:
0024     XMLValidatorI(const std::string &className);
0025     virtual ~XMLValidatorI();
0026 
0027     virtual bool isValidXMLDocument(const std::string &xmlSchemaStream,
0028             const std::string &xmlDocumentStream) const = 0;
0029 };
0030 
0031 } /* namespace PARTONS */
0032 
0033 #endif /* XML_VALIDATOR_I_H */