diff options
Diffstat (limited to 'cpp/src/Slice/Preprocessor.h')
-rw-r--r-- | cpp/src/Slice/Preprocessor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Slice/Preprocessor.h b/cpp/src/Slice/Preprocessor.h index 80f8acf4d66..f237a41b3f1 100644 --- a/cpp/src/Slice/Preprocessor.h +++ b/cpp/src/Slice/Preprocessor.h @@ -29,12 +29,16 @@ public: ~Preprocessor(); FILE* preprocess(bool, const std::string& = ""); + FILE* preprocess(bool, const std::vector<std::string>&); bool close(); enum Language { CPlusPlus, Java, CSharp, Python, Ruby, PHP, JavaScript, JavaScriptJSON, ObjC, SliceXML }; bool printMakefileDependencies(std::ostream&, Language, const std::vector<std::string>&, const std::string& = "", const std::string& = "cpp", const std::string& = ""); + bool printMakefileDependencies(std::ostream&, Language, const std::vector<std::string>&, + const std::vector<std::string>&, const std::string& = "cpp", + const std::string& = ""); std::string getBaseName(); |