From 87051183eea0f573bd4f3521446d7eb4da4622be Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Wed, 1 Sep 2004 19:17:36 +0000 Subject: Include/cppunit/XmlOutputter. include/cppunit/XmlOutputter.h: * include/cppunit/tools/XmlDocument.h * src/cppunit/XmlDocument.cpp: * src/cppunit/XmlOutputter.cpp: integrated patch #997006 from Akos Maroy. This patch makes the 'standalone' attribute in XML header optional. --- src/cppunit/XmlOutputter.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/cppunit/XmlOutputter.cpp') diff --git a/src/cppunit/XmlOutputter.cpp b/src/cppunit/XmlOutputter.cpp index cc9f175..c605e33 100644 --- a/src/cppunit/XmlOutputter.cpp +++ b/src/cppunit/XmlOutputter.cpp @@ -58,6 +58,13 @@ XmlOutputter::setStyleSheet( const std::string &styleSheet ) } +void +XmlOutputter::setStandalone( bool standalone ) +{ + m_xml->setStandalone( standalone ); +} + + void XmlOutputter::setRootNode() { -- cgit v1.2.1