mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
persister cleanup (still broke but logic is there for when it isn't); also replace all the SOE BS for forwarding stl port with native object classes because i thought that may be part of the problem...
This commit is contained in:
@@ -49,7 +49,7 @@ class CommandParser
|
||||
public:
|
||||
|
||||
typedef Unicode::String String_t;
|
||||
typedef stdvector<String_t>::fwd StringVector_t;
|
||||
typedef std::vector<String_t> StringVector_t;
|
||||
|
||||
enum ErrorType
|
||||
{
|
||||
@@ -199,7 +199,7 @@ private:
|
||||
const CommandParser * m_parent;
|
||||
CommandParser * m_delegate;
|
||||
|
||||
typedef stdmap<int, String_t>::fwd ErrorMsgMap_t;
|
||||
typedef std::map<int, String_t> ErrorMsgMap_t;
|
||||
|
||||
static size_t ms_instanceCount;
|
||||
static String_t * ms_ERR_NO_ERROR_MSG_MSG;
|
||||
@@ -216,7 +216,7 @@ private:
|
||||
bool operator () (const CommandParser * a, const CommandParser * b) const;
|
||||
};
|
||||
|
||||
typedef stdset<CommandParser*, Comparator>::fwd CommandParserSet_t;
|
||||
typedef std::set<CommandParser*, Comparator> CommandParserSet_t;
|
||||
|
||||
CommandParserSet_t * m_subCommands;
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ class CommandParserHistory
|
||||
{
|
||||
public:
|
||||
|
||||
typedef stddeque<Unicode::String>::fwd HistoryList_t;
|
||||
typedef std::deque<Unicode::String> HistoryList_t;
|
||||
|
||||
CommandParserHistory ();
|
||||
~CommandParserHistory ();
|
||||
|
||||
Reference in New Issue
Block a user