diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-04-14 01:37:07 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-04-14 01:37:07 +0000 |
commit | 81a5ac6b61f1574710108ec08d5e49a19b12e3ce (patch) | |
tree | e38db88448db009ac1cbc95b0059613021de92c0 /cpp/demo | |
parent | updated Makefile. (diff) | |
download | ice-81a5ac6b61f1574710108ec08d5e49a19b12e3ce.tar.bz2 ice-81a5ac6b61f1574710108ec08d5e49a19b12e3ce.tar.xz ice-81a5ac6b61f1574710108ec08d5e49a19b12e3ce.zip |
fixed some Linux build errors.
Diffstat (limited to 'cpp/demo')
-rwxr-xr-x | cpp/demo/Ice/session/SessionFactoryI.h | 2 | ||||
-rwxr-xr-x | cpp/demo/Ice/session/SessionI.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Ice/session/SessionFactoryI.h b/cpp/demo/Ice/session/SessionFactoryI.h index 58abaf967be..ae9d7765382 100755 --- a/cpp/demo/Ice/session/SessionFactoryI.h +++ b/cpp/demo/Ice/session/SessionFactoryI.h @@ -51,8 +51,8 @@ public: private: - const IceUtil::Time _timeout; const Ice::ObjectAdapterPtr _adapter; + const IceUtil::Time _timeout; ReapThreadPtr _reapThread; std::list<std::pair<SessionIPtr, ::Ice::Identity> > _sessions; }; diff --git a/cpp/demo/Ice/session/SessionI.h b/cpp/demo/Ice/session/SessionI.h index b5eb81088bd..acfe7595750 100755 --- a/cpp/demo/Ice/session/SessionI.h +++ b/cpp/demo/Ice/session/SessionI.h @@ -34,7 +34,7 @@ private: int _nextId; bool _destroy; IceUtil::Time _refreshTime; - std::list<::Demo::HelloPrx> _objs; + std::list< ::Demo::HelloPrx> _objs; }; typedef IceUtil::Handle<SessionI> SessionIPtr; |