diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-15 21:32:11 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-15 21:32:11 +0000 |
commit | 293eefcb57bb50b434106a66b4858bfdca275c04 (patch) | |
tree | dfbd048672db99b2f6339960fd0fc86c265e6c95 /TAO/tao | |
parent | 15126eeb97b706bacfb2b90c5995d0042cda2dac (diff) | |
download | ATCD-293eefcb57bb50b434106a66b4858bfdca275c04.tar.gz |
Tue Jun 15 16:16:48 1999 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/Servant_Base.cpp | 4 | ||||
-rw-r--r-- | TAO/tao/Servant_Base.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/TAO/tao/Servant_Base.cpp b/TAO/tao/Servant_Base.cpp index b0d517b0d7f..145dac6e608 100644 --- a/TAO/tao/Servant_Base.cpp +++ b/TAO/tao/Servant_Base.cpp @@ -189,7 +189,9 @@ TAO_ServantBase::_decrement_single_threaded_poa_lock_count (void) } void * -TAO_ServantBase::_create_collocated_objref (CORBA::ULong, TAO_Stub *) +TAO_ServantBase::_create_collocated_objref (const char *, + CORBA::ULong, + TAO_Stub *) { return 0; } diff --git a/TAO/tao/Servant_Base.h b/TAO/tao/Servant_Base.h index a97f59868ab..b40fc0e691a 100644 --- a/TAO/tao/Servant_Base.h +++ b/TAO/tao/Servant_Base.h @@ -59,7 +59,8 @@ public: virtual TAO_Stub *_create_stub (CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ()); // This is an auxiliar method for _this() and _narrow(). - virtual void * _create_collocated_objref (CORBA::ULong type, + virtual void * _create_collocated_objref (const char *repository_id, + CORBA::ULong type, TAO_Stub *stub); // Collocated object factory. |