I have a code which will read the xml file using pugi xml. Given below is the content of the same.
xml_document doc;
xml_parse_result result = doc.load_file(sXMLFilePath.c_str());
Here sXMLFilePath is the file present in my system. I want to hard-code this file into the code itself. I dont want to read this file from the machine. Meaning I want to make this file static.
Also if the file size is more than 30MB, can I compress the same?