Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/XML/Parsers/xmlparserbase.h')
-rw-r--r--Source/XML/Parsers/xmlparserbase.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/XML/Parsers/xmlparserbase.h b/Source/XML/Parsers/xmlparserbase.h
index 26505688..488cb7a4 100644
--- a/Source/XML/Parsers/xmlparserbase.h
+++ b/Source/XML/Parsers/xmlparserbase.h
@@ -27,8 +27,8 @@
#include <string>
class XMLParserBase {
-public:
- virtual uint32_t Load( const std::string& path ) = 0;
- virtual bool Save( const std::string& path ) = 0;
+ public:
+ virtual uint32_t Load(const std::string& path) = 0;
+ virtual bool Save(const std::string& path) = 0;
virtual void Clear() = 0;
};