Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added comments to describe functions in common/getcontactinfo.cpp
[xestiaab/.git] / source / common / textprocessing.cpp
index ba4f7d9..aeec7a8 100644 (file)
@@ -1,3 +1,21 @@
+// textprocessing.cpp - Text processing subroutines.
+//
+// (c) 2012-2015 Xestia Software Development.
+//
+// This file is part of Xestia Address Book.
+//
+// Xestia Address Book is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by the
+// Free Software Foundation, version 3 of the license.
+//
+// Xestia Address Book is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
+
 #include <wx/wx.h>
 #include <iostream>
 #include <iomanip>
@@ -62,6 +80,16 @@ void CaptureString(wxString *ProcessString, bool StripQuotes)
 
 }
 
+void ResetUnusedString(wxString *ProcessString)
+{
+
+       ProcessString->Replace(wxT("\\\\"), wxT("\\"), TRUE);
+       ProcessString->Replace(wxT("\n"), wxT(""), TRUE);
+       ProcessString->Replace(wxT("\\;"), wxT(";"), TRUE);
+       ProcessString->Replace(wxT("\\,"), wxT(","), TRUE);
+
+}
+
 void ConvertToHTML(wxString *ProcessString)
 {
 
@@ -88,6 +116,34 @@ void DeleteMapDataProcess(int IndexNum, std::map<int, bool>* MapData){
        MapData->erase(IndexNum);
 }
 
+bool MapDataExists(int *ItemIndex, std::map<int,wxString> *MapPtr){
+
+       if (MapPtr->find(*ItemIndex) == MapPtr->end()){
+       
+               return FALSE;
+       
+       } else {
+       
+               return TRUE;
+       
+       }
+
+}
+
+bool MapDataExists(int *ItemIndex, std::map<int,int> *MapPtr){
+
+       if (MapPtr->find(*ItemIndex) == MapPtr->end()){
+       
+               return FALSE;
+       
+       } else {
+       
+               return TRUE;
+       
+       }
+
+}
+
 /*
 template <typename ArgMap, typename... Args>
 void DeleteMapData(ArgMap* ArgMapPtr, Args*... ArgsList){
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy