Elaztek Developer Hub
Blamite Game Engine - Strings  00326.06.27.21.0407.blamite
A library containing general purpose utilities and classes for use in multiple projects.
xml.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 #ifdef STRINGS_EXPORTS
6 #define STRINGS_API __declspec(dllexport)
7 #else
8 #define STRINGS_API __declspec(dllimport)
9 #endif
10 
15 {
24  STRINGS_API std::string FormatXMLString(std::string xml_contents, int spaces_per_indent = 4);
25 }
BlamStrings::Utils::XML
Namespace containing functions for working with XML files and data.
Definition: xml.h:14
BlamStrings::Utils::XML::FormatXMLString
STRINGS_API std::string FormatXMLString(std::string xml_contents, int spaces_per_indent=4)
Formats a string containing XML data into a human-readable format.
Definition: xml.cpp:91
STRINGS_API
#define STRINGS_API
Definition: xml.h:8