diff options
Diffstat (limited to 'cpp/demo/Ice/session/SessionFactoryI.h')
-rw-r--r-- | cpp/demo/Ice/session/SessionFactoryI.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/Ice/session/SessionFactoryI.h b/cpp/demo/Ice/session/SessionFactoryI.h index 7038d526218..bae05e0742c 100644 --- a/cpp/demo/Ice/session/SessionFactoryI.h +++ b/cpp/demo/Ice/session/SessionFactoryI.h @@ -12,20 +12,20 @@ #include <Ice/Ice.h> #include <Session.h> -#include <ReapThread.h> +#include <ReapTask.h> class SessionFactoryI : public Demo::SessionFactory { public: - SessionFactoryI(const ReapThreadPtr&); + SessionFactoryI(const ReapTaskPtr&); virtual Demo::SessionPrx create(const std::string&, const Ice::Current&); virtual void shutdown(const Ice::Current&); private: - ReapThreadPtr _reaper; + const ReapTaskPtr _reaper; }; #endif |