diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-02-16 12:44:02 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-02-16 12:44:02 -0800 |
commit | 7850a1273f217874f9a2ce1c195aed5205ce43e6 (patch) | |
tree | d5c99dccfeb91ed218674f82e6dfd2431ed6b31a /cpp/include/Slice/Preprocessor.h | |
parent | Bug 3715 filterMcppWarnings fix filtered strings. (diff) | |
download | ice-7850a1273f217874f9a2ce1c195aed5205ce43e6.tar.bz2 ice-7850a1273f217874f9a2ce1c195aed5205ce43e6.tar.xz ice-7850a1273f217874f9a2ce1c195aed5205ce43e6.zip |
bug 3731 - backward incompatibilities in Slice library
Diffstat (limited to 'cpp/include/Slice/Preprocessor.h')
-rw-r--r-- | cpp/include/Slice/Preprocessor.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/include/Slice/Preprocessor.h b/cpp/include/Slice/Preprocessor.h index c1b6c806e5f..23458bccfbb 100644 --- a/cpp/include/Slice/Preprocessor.h +++ b/cpp/include/Slice/Preprocessor.h @@ -32,7 +32,7 @@ class SLICE_API Preprocessor { public: - Preprocessor(const std::string&, const std::string&, const std::vector<std::string>&, const std::string& = "cpp"); + Preprocessor(const std::string&, const std::string&, const std::vector<std::string>&); ~Preprocessor(); FILE* preprocess(bool); @@ -40,7 +40,7 @@ public: enum Language { CPlusPlus, Java, JavaXML, CSharp, VisualBasic }; - bool printMakefileDependencies(Language, const std::vector<std::string>&); + bool printMakefileDependencies(Language, const std::vector<std::string>&, const std::string& = "cpp"); std::string getBaseName(); @@ -54,7 +54,6 @@ private: const std::string _path; const std::string _fileName; const std::vector<std::string> _args; - const std::string _cppSourceExt; #ifdef _WIN32 std::wstring _cppFile; #else |