Linking.h 324 B

1234567891011121314151617
  1. #ifndef QLOW_LINKING_H_
  2. #define QLOW_LINKING_H_
  3. #include "Path.h"
  4. #include <vector>
  5. namespace qlow
  6. {
  7. std::string getExternalSymbol(const std::string& name);
  8. std::string getLinkerExecutable(void);
  9. int invokeProgram(const std::string& path, const std::vector<std::string>& args);
  10. }
  11. #endif // QLOW_LINKING_H_