9 lines
191 B
C++
9 lines
191 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
|