diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
commit | 0e49389337be86641451a5c36c24bf742fe97523 (patch) | |
tree | 197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/tao/Default_Collocation_Resolver.cpp | |
parent | 8008dd09ccf88d4edef237a184a698cac42f2952 (diff) | |
download | ATCD-0e49389337be86641451a5c36c24bf742fe97523.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/tao/Default_Collocation_Resolver.cpp')
-rw-r--r-- | TAO/tao/Default_Collocation_Resolver.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/tao/Default_Collocation_Resolver.cpp b/TAO/tao/Default_Collocation_Resolver.cpp new file mode 100644 index 00000000000..78ccc5c4b5c --- /dev/null +++ b/TAO/tao/Default_Collocation_Resolver.cpp @@ -0,0 +1,29 @@ +// $Id$ + +#include "tao/Default_Collocation_Resolver.h" + +ACE_RCSID (tao, + Default_Collocation_Resolver, + "$Id$") + +#include "tao/Object.h" +#include "ace/Log_Msg.h" + +TAO_BEGIN_VERSIONED_NAMESPACE_DECL + +CORBA::Boolean +TAO_Default_Collocation_Resolver::is_collocated (CORBA::Object_ptr object + ACE_ENV_ARG_DECL_NOT_USED) const +{ + return object->_is_collocated (); +} + +TAO_END_VERSIONED_NAMESPACE_DECL + +ACE_STATIC_SVC_DEFINE (TAO_Default_Collocation_Resolver, + ACE_TEXT ("Default_Collocation_Resolver"), + ACE_SVC_OBJ_T, + &ACE_SVC_NAME (TAO_Default_Collocation_Resolver), + ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ, + 0) +ACE_FACTORY_DEFINE (TAO, TAO_Default_Collocation_Resolver) |