diff options
Diffstat (limited to 'cpp/demo/Ice/session/SessionFactoryI.h')
-rwxr-xr-x | cpp/demo/Ice/session/SessionFactoryI.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/demo/Ice/session/SessionFactoryI.h b/cpp/demo/Ice/session/SessionFactoryI.h index 6987d7f1d22..c46c11c1b2d 100755 --- a/cpp/demo/Ice/session/SessionFactoryI.h +++ b/cpp/demo/Ice/session/SessionFactoryI.h @@ -10,16 +10,18 @@ #ifndef SESSION_FACTORY_I_H #define SESSION_FACTORY_I_H +// XXX Missing #includes, see comment in SessionI.h. #include <Session.h> -class SessionFactoryI : public Demo::SessionFactory, public IceUtil::Mutex +class SessionFactoryI : public Demo::SessionFactory, public IceUtil::Mutex // XXX What is the mutex needed for? { public: + // XXX Constructor and destructor do nothing, get rid of them. SessionFactoryI(); virtual ~SessionFactoryI(); - virtual Demo::SessionPrx create(const ::Ice::Current&); + virtual Demo::SessionPrx create(const Ice::Current&); virtual void shutdown(const Ice::Current&); }; |