#ifndef __COMMON_TEXT_H__ #define __COMMON_TEXT_H__ #include #include #include #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); std::map SplitValues(std::string InputData); PropertyNameValue SplitNameValue(std::string InputData); bool HexToInt(std::string *HexString, int *Number); bool IntToHex(int *Number, std::string *HexString, int HexFill); #endif