From 6c205f4859588fc8dad786dce5f2fa32c75fd3f3 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Fri, 18 Apr 2014 22:19:46 +0200 Subject: Code style improvements * marked assignment and equality operators as deleted instead of making them private * XercesParserLiaison is stored in a std::shared_ptr specialization instance for scope guarding * moved implementation details into InputXSLT namespace --- test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test.cc') diff --git a/test.cc b/test.cc index bc6f0b2..d6b45bf 100644 --- a/test.cc +++ b/test.cc @@ -19,13 +19,13 @@ int main() { transformer.installExternalFunction( customNamespace, xalan::XalanDOMString("read-file"), - FunctionReadFile() + InputXSLT::FunctionReadFile() ); transformer.installExternalFunction( customNamespace, xalan::XalanDOMString("read-xml-file"), - FunctionReadXmlFile() + InputXSLT::FunctionReadXmlFile() ); xalan::XSLTInputSource input("../dummy/in.xml"); -- cgit v1.2.3