}
+void ProcessTokens(wxString *PropertyName,
+ wxString *PropertyValue,
+ wxString *PropertyTokens,
+ bool FirstToken){
+
+ if (!PropertyName->IsEmpty() && !PropertyValue->IsEmpty() && *PropertyName != wxT("TYPE")){
+
+ if (FirstToken == TRUE){
+
+ PropertyTokens->Append(*PropertyName + wxT("=") + *PropertyValue);
+ FirstToken = FALSE;
+
+ } else {
+
+ PropertyTokens->Append(wxT(";") + *PropertyName + wxT("=") + *PropertyValue);
+
+ }
+
+ }
+
+}
+
void ProcessStringValue(wxString *PropertyName,
wxString PropertyNameMatch,
std::map<int,wxString> *MapPtr,
int *intPrevValue,
PropertyType *intType);
+void ProcessTokens(wxString *PropertyName,
+ wxString *PropertyValue,
+ wxString *PropertyTokens,
+ bool FirstToken);
+
void ProcessIntegerValue(wxString *PropertyName,
wxString PropertyNameMatch,
std::map<int,int> *PrefPtr,