summaryrefslogtreecommitdiff
path: root/cpp/src/slice2java/Gen.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r--cpp/src/slice2java/Gen.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h
index 1b65bf71f9b..bbcd2cb8908 100644
--- a/cpp/src/slice2java/Gen.h
+++ b/cpp/src/slice2java/Gen.h
@@ -43,7 +43,7 @@ protected:
std::string getAsyncCallbackInterface(const OperationPtr&, const std::string&);
std::string getAsyncCallbackBaseClass(const OperationPtr&, bool);
- std::string getLambdaResposeCB(const OperationPtr&, const std::string&);
+ std::string getLambdaResponseCB(const OperationPtr&, const std::string&);
std::vector<std::string> getParamsAsyncLambda(const OperationPtr&, const std::string&,
bool context = false, bool sentCB = false,
bool optionalMapping = false,
@@ -110,12 +110,14 @@ protected:
static StringList splitComment(const ContainedPtr&);
static void writeDocComment(::IceUtilInternal::Output&, const ContainedPtr&,
const std::string&, const std::string& = "");
+ static void writeDocComment(::IceUtilInternal::Output&, const std::string&, const std::string&);
static void writeDocCommentOp(::IceUtilInternal::Output&, const OperationPtr&);
static void writeDocCommentAsync(::IceUtilInternal::Output&, const OperationPtr&,
ParamDir, const std::string& = "");
static void writeDocCommentAMI(::IceUtilInternal::Output&, const OperationPtr&, ParamDir, const std::string& = "",
- const std::string& = "", const std::string& = "");
+ const std::string& = "", const std::string& = "", const std::string& = "",
+ const std::string& = "");
static void writeDocCommentParam(::IceUtilInternal::Output&, const OperationPtr&, ParamDir, bool = true);
};