}
-void ProcessIntegerValue(std::map<int,int> *PrefPtr,
- wxString *PropertyValue,
- int *ItemCount){
-
- int PriorityNumber = 0;
- bool ValidNumber = TRUE;
-
- try{
- PriorityNumber = std::stoi(PropertyValue->ToStdString());
- }
-
- catch(std::invalid_argument &e){
- ValidNumber = FALSE;
- }
-
- if (ValidNumber == TRUE){
-
- PrefPtr->erase(*ItemCount);
- PrefPtr->insert(std::make_pair(*ItemCount, PriorityNumber));
-
- }
-
-}
-
void SplitValues(wxString *PropertyLine,
std::map<int,int> *SplitPoints,
std::map<int,int> *SplitLength,
wxString *PropertyValue,
int *ItemCount,
bool *PropertyMatched);
-
-void ProcessIntegerValue(std::map<int,int> *PrefPtr,
- wxString *PropertyValue,
- int *ItemCount);
void ProcessStringValue(wxString *PropertyName,
wxString PropertyNameMatch,