14 lines
206 B
C++
14 lines
206 B
C++
#ifndef PREPROCESSOR_H
|
|
#define PREPROCESSOR_H
|
|
|
|
#include <string>
|
|
std::string preprocessSource(
|
|
const std::string& src,
|
|
const std::string& projectDir,
|
|
const std::string& compilerDir
|
|
);
|
|
|
|
|
|
|
|
#endif
|