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