#pragma once #include #include namespace helper { std::string GenerateUniqueId(); void ArrayToFile(unsigned char *array_, size_t size_, std::string filename); void GenerateTemplateFile(std::string path, NpiProject prj); void CompileProject(std::string path, bool async = false); void CleanProject(std::string path); } // namespace helper