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.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h
index 1325db537a6..837765eb4c5 100644
--- a/cpp/src/slice2java/Gen.h
+++ b/cpp/src/slice2java/Gen.h
@@ -68,12 +68,6 @@ protected:
void writeThrowsClause(const std::string&, const ExceptionList&);
//
- // Generate a throws clause for delegate operations containing only
- // non-local exceptions.
- //
- void writeDelegateThrowsClause(const std::string&, const ExceptionList&);
-
- //
// Generate code to compute a hash code for a type.
//
void writeHashCode(::IceUtilInternal::Output&, const TypePtr&, const std::string&, int&,
@@ -260,41 +254,6 @@ private:
virtual void visitOperation(const OperationPtr&);
};
- class DelegateVisitor : public JavaVisitor
- {
- public:
-
- DelegateVisitor(const std::string&);
-
- virtual bool visitClassDefStart(const ClassDefPtr&);
- };
-
- class DelegateMVisitor : public JavaVisitor
- {
- public:
-
- DelegateMVisitor(const std::string&);
-
- virtual bool visitClassDefStart(const ClassDefPtr&);
-
- private:
-
- void writeOperation(const ClassDefPtr&, const std::string&, const OperationPtr&, bool);
- };
-
- class DelegateDVisitor : public JavaVisitor
- {
- public:
-
- DelegateDVisitor(const std::string&);
-
- virtual bool visitClassDefStart(const ClassDefPtr&);
-
- private:
-
- void writeOperation(const ClassDefPtr&, const std::string&, const OperationPtr&, bool);
- };
-
class DispatcherVisitor : public JavaVisitor
{
public: