X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;ds=sidebyside;f=source%2Fcommon%2Ftextprocessing.cpp;h=d979d301b010e14a9f88ed8db8038e4997fc3bfa;hb=23776c47694a72b7ae42c3c0f63bd24ab63a3bad;hp=ba4f7d9cf79d134d9a51e74efe5331697306fc9b;hpb=45729fca56479bd9158486e0cda0c4a94b4dd1dc;p=xestiaab%2F.git diff --git a/source/common/textprocessing.cpp b/source/common/textprocessing.cpp index ba4f7d9..d979d30 100644 --- a/source/common/textprocessing.cpp +++ b/source/common/textprocessing.cpp @@ -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 + #include #include #include @@ -88,6 +106,34 @@ void DeleteMapDataProcess(int IndexNum, std::map* MapData){ MapData->erase(IndexNum); } +bool MapDataExists(int *ItemIndex, std::map *MapPtr){ + + if (MapPtr->find(*ItemIndex) == MapPtr->end()){ + + return FALSE; + + } else { + + return TRUE; + + } + +} + +bool MapDataExists(int *ItemIndex, std::map *MapPtr){ + + if (MapPtr->find(*ItemIndex) == MapPtr->end()){ + + return FALSE; + + } else { + + return TRUE; + + } + +} + /* template void DeleteMapData(ArgMap* ArgMapPtr, Args*... ArgsList){