X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcommon%2Ftext.h;h=0cc513a8d4c3e7478e2a5afb0ad1beb2494a0b96;hb=52069b98994d3695c73f4b22d2ea66a04fdda2cf;hp=d730aae6714ff1b95b0a4b8b9bd07437849a4f8f;hpb=edbae90db6fd9237515844afadb98f41a025ab1f;p=xestiacalendar%2F.git diff --git a/source/common/text.h b/source/common/text.h index d730aae..0cc513a 100644 --- a/source/common/text.h +++ b/source/common/text.h @@ -1,9 +1,21 @@ +#ifndef __COMMON_TEXT_H__ +#define __COMMON_TEXT_H__ + #include #include #include #include +struct PropertyNameValue{ + std::string Name; + std::string Value; +}; + std::multimap ProcessTextVectors(std::vector *TextProperties, std::vector *TextValues, bool SearchMultiple, - std::string Property); \ No newline at end of file + std::string Property); +std::map SplitValues(std::string InputData); +PropertyNameValue SplitNameValue(std::string InputData); + +#endif \ No newline at end of file