#ifndef QLOW_LINKING_H_ #define QLOW_LINKING_H_ #include "Path.h" #include namespace qlow { std::string getExternalSymbol(const std::string& name); std::string getLinkerExecutable(void); int invokeProgram(const std::string& path, const std::vector& args); } #endif // QLOW_LINKING_H_