summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/Preprocessor.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2009-02-16 12:44:02 -0800
committerMark Spruiell <mes@zeroc.com>2009-02-16 12:44:02 -0800
commit7850a1273f217874f9a2ce1c195aed5205ce43e6 (patch)
treed5c99dccfeb91ed218674f82e6dfd2431ed6b31a /cpp/include/Slice/Preprocessor.h
parentBug 3715 filterMcppWarnings fix filtered strings. (diff)
downloadice-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.h5
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