diff options
Diffstat (limited to 'cpp/test/Ice/interceptor/AMDInterceptorI.h')
-rw-r--r-- | cpp/test/Ice/interceptor/AMDInterceptorI.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/interceptor/AMDInterceptorI.h b/cpp/test/Ice/interceptor/AMDInterceptorI.h index 448bfeac6fe..36aa30f4638 100644 --- a/cpp/test/Ice/interceptor/AMDInterceptorI.h +++ b/cpp/test/Ice/interceptor/AMDInterceptorI.h @@ -19,20 +19,20 @@ public: AMDInterceptorI(const Ice::ObjectPtr&); - virtual IceInternal::DispatchStatus dispatch(Ice::Request&); + virtual Ice::DispatchStatus dispatch(Ice::Request&); virtual void clear(); - IceInternal::DispatchStatus getActualStatus() const; + Ice::DispatchStatus getActualStatus() const; IceUtil::Exception* getException() const; - void setActualStatus(IceInternal::DispatchStatus); + void setActualStatus(Ice::DispatchStatus); void setActualStatus(const IceUtil::Exception&); private: Ice::DispatchInterceptorAsyncCallbackPtr _defaultCb; - IceInternal::DispatchStatus _actualStatus; + Ice::DispatchStatus _actualStatus; std::auto_ptr<IceUtil::Exception> _exception; IceUtil::Mutex _mutex; |