Do bulk replace of stl types.
This commit is contained in:
parent
521486be62
commit
c25a56ee19
531 changed files with 2274 additions and 2181 deletions
|
@ -1,11 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
#include <stack>
|
||||
#include <memory>
|
||||
#include "Memory.h"
|
||||
|
||||
class XmlDocument;
|
||||
using XmlDocumentPtr = std::unique_ptr<XmlDocument>;
|
||||
using XmlDocumentPtr = Ptr<XmlDocument>;
|
||||
|
||||
class XmlElement;
|
||||
|
||||
|
@ -38,7 +38,7 @@ public:
|
|||
public:
|
||||
XmlParser();
|
||||
|
||||
void processLine(const std::string& input);
|
||||
void processLine(const String& input);
|
||||
|
||||
XmlDocumentPtr getDocument();
|
||||
|
||||
|
@ -95,8 +95,8 @@ private:
|
|||
XmlDocumentPtr mDocument;
|
||||
std::stack<XmlElement*> mWorkingElements;
|
||||
|
||||
std::string mWorkingAttributeName;
|
||||
std::string mWorkingTagName;
|
||||
std::string mWorkingAttributeValue;
|
||||
std::string mWorkingText;
|
||||
String mWorkingAttributeName;
|
||||
String mWorkingTagName;
|
||||
String mWorkingAttributeValue;
|
||||
String mWorkingText;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue