src/XMLDocumentConstructor.h
branchv_0
changeset 15 917b8fbd29b9
parent 14 5be268bc4c69
equal deleted inserted replaced
14:5be268bc4c69 15:917b8fbd29b9
    28 	xmlpp::DomParser* parser = nullptr;
    28 	xmlpp::DomParser* parser = nullptr;
    29 public:
    29 public:
    30 
    30 
    31 	XMLDocumentConstructor(std::istream* input, xmlpp::DomParser* parser) : input(input), parser(parser) {
    31 	XMLDocumentConstructor(std::istream* input, xmlpp::DomParser* parser) : input(input), parser(parser) {
    32 	}
    32 	}
       
    33 	
       
    34 	void setOption(const std::string& uri, const std::string& value) {
       
    35 	}
    33 
    36 
    34 	void process() {
    37 	void process() {
    35 		parser->parse_stream(*input);
    38 		parser->parse_stream(*input);
    36 	}
    39 	}
    37 };
    40 };