return true;
+}
+
+bool IntToHex(int *Number, std::string *HexString, int HexFill){
+
+ stringstream StringData;
+ StringData << setfill('0') << hex << setw(HexFill) << (*Number);
+ (*HexString) = StringData.str();
+
+ return true;
+
}
\ No newline at end of file
#include <map>
#include <iostream>
#include <stdexcept>
+#include <iomanip>
struct PropertyNameValue{
std::string Name;
std::map<std::string, std::string> 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
\ No newline at end of file