Skip to content

Commit

Permalink
Revised includes, trying to limit to what is actually needed, but als…
Browse files Browse the repository at this point in the history
…o trying not to depend on recursive includes.
  • Loading branch information
gsrohde committed Mar 15, 2024
1 parent 8d2970a commit 3b4fefa
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
18 changes: 13 additions & 5 deletions app/Result_xml_document.cpp
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
#include "Result_xml_document.h"

/* Standard Library */
#include <algorithm>
#include <sstream>
#include <algorithm> // for sort
#include <iostream> // for cerr, endl
#include <sstream> // for stringstream
#include <string>

/* Xerces Library */
#include <xercesc/dom/DOM.hpp>
#include <xercesc/dom/DOMElement.hpp>
#include <xercesc/dom/DOMException.hpp>
#include <xercesc/dom/DOMImplementation.hpp>
#include <xercesc/dom/DOMImplementationLS.hpp>
#include <xercesc/dom/DOMImplementationRegistry.hpp>
#include <xercesc/dom/DOMLSOutput.hpp>
#include <xercesc/dom/DOMLSSerializer.hpp>
#include <xercesc/dom/DOMNodeList.hpp>
#include <xercesc/framework/LocalFileFormatTarget.hpp>
#include <xercesc/framework/StdOutFormatTarget.hpp>
#include <xercesc/util/IOException.hpp>
#include <xercesc/util/OutOfMemoryException.hpp>
#include <xercesc/framework/StdOutFormatTarget.hpp>
#include <xercesc/framework/LocalFileFormatTarget.hpp>

/* DAWN app */
#include "StrX.h"
Expand Down
2 changes: 1 addition & 1 deletion app/include/StrX.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/

/* Standard Library */
#include <iostream>
#include <ostream>

/* Xerces Library */
#include <xercesc/util/XMLString.hpp> // XMLString; includes XMLCh typedef
Expand Down
3 changes: 2 additions & 1 deletion app/include/simulation_definition.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
#include <string>

/* Xerces Library */
#include <xercesc/dom/DOM.hpp>
#include <xercesc/dom/DOMElement.hpp>
#include <xercesc/dom/DOMNode.hpp>
#include <xercesc/parsers/XercesDOMParser.hpp>

/* BioCro */
Expand Down
5 changes: 4 additions & 1 deletion app/simulation_definition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
#include <errno.h>

/* Xerces Library */
#include <xercesc/dom/DOM.hpp>
#include <xercesc/dom/DOMElement.hpp>
#include <xercesc/dom/DOMException.hpp>
#include <xercesc/dom/DOMImplementation.hpp>
#include <xercesc/dom/DOMNodeList.hpp>
#include <xercesc/parsers/XercesDOMParser.hpp>
#include <xercesc/util/OutOfMemoryException.hpp>

Expand Down

0 comments on commit 3b4fefa

Please sign in to comment.