diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-09 18:48:44 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-09 18:48:44 +0000 |
commit | 3db71840bc9c446a7709b1a8f620bee6a953e6d3 (patch) | |
tree | 7008cc34c876503e0da1d07eeb2891025fbb0d49 /TAO/tao/Strategies/UIOP_Profile.i | |
parent | 8fd13ec7f8b0abd317029f9cda78a3f55222891a (diff) | |
download | ATCD-3db71840bc9c446a7709b1a8f620bee6a953e6d3.tar.gz |
ChangeLogTag: Thu Nov 9 10:38:19 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'TAO/tao/Strategies/UIOP_Profile.i')
-rw-r--r-- | TAO/tao/Strategies/UIOP_Profile.i | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tao/Strategies/UIOP_Profile.i b/TAO/tao/Strategies/UIOP_Profile.i new file mode 100644 index 00000000000..3c14e09b1e3 --- /dev/null +++ b/TAO/tao/Strategies/UIOP_Profile.i @@ -0,0 +1,24 @@ +// -*- C++ -*- +// $Id$ + +# if TAO_HAS_UIOP == 1 + +ACE_INLINE const TAO_ObjectKey & +TAO_UIOP_Profile::object_key (void) const +{ + return this->object_key_; +} + +ACE_INLINE TAO_ObjectKey * +TAO_UIOP_Profile::_key (void) const +{ + TAO_ObjectKey *key = 0; + + ACE_NEW_RETURN (key, + TAO_ObjectKey (this->object_key_), + 0); + + return key; +} + +#endif /* TAO_HAS_UIOP == 1 */ |