summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/interceptor/InterceptorI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/interceptor/InterceptorI.h')
-rw-r--r--cpp/test/Ice/interceptor/InterceptorI.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/interceptor/InterceptorI.h b/cpp/test/Ice/interceptor/InterceptorI.h
index c43f4ec626c..cc771cb1e74 100644
--- a/cpp/test/Ice/interceptor/InterceptorI.h
+++ b/cpp/test/Ice/interceptor/InterceptorI.h
@@ -19,9 +19,9 @@ public:
InterceptorI(const Ice::ObjectPtr&);
- virtual IceInternal::DispatchStatus dispatch(Ice::Request& request);
+ virtual Ice::DispatchStatus dispatch(Ice::Request& request);
- IceInternal::DispatchStatus getLastStatus() const;
+ Ice::DispatchStatus getLastStatus() const;
const std::string& getLastOperation() const;
virtual void clear();
@@ -29,7 +29,7 @@ public:
protected:
const Ice::ObjectPtr _servant;
std::string _lastOperation;
- IceInternal::DispatchStatus _lastStatus;
+ Ice::DispatchStatus _lastStatus;
};
typedef IceUtil::Handle<InterceptorI> InterceptorIPtr;