12 lines
326 B
C++
12 lines
326 B
C++
#ifndef PREPROCESSOR_H
|
|
#define PREPROCESSOR_H
|
|
|
|
#include <string>
|
|
|
|
// G³ówna funkcja preprocesora.
|
|
// src: kod Ÿród³owy g³ównego pliku
|
|
// basePath: œcie¿ka do folderu, w którym jest g³ówny plik (¿eby wiedzieæ sk¹d braæ lokalne include)
|
|
std::string preprocessSource(const std::string& src, const std::string& basePath);
|
|
|
|
#endif
|