summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies/DIOP_Profile.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Strategies/DIOP_Profile.i')
-rw-r--r--TAO/tao/Strategies/DIOP_Profile.i24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tao/Strategies/DIOP_Profile.i b/TAO/tao/Strategies/DIOP_Profile.i
new file mode 100644
index 00000000000..2c18a75ae92
--- /dev/null
+++ b/TAO/tao/Strategies/DIOP_Profile.i
@@ -0,0 +1,24 @@
+// -*- C++ -*-
+// $Id$
+
+ACE_INLINE const TAO_ObjectKey &
+TAO_DIOP_Profile::object_key (void) const
+{
+ return this->object_key_;
+}
+
+ACE_INLINE TAO_ObjectKey *
+TAO_DIOP_Profile::_key (void) const
+{
+ TAO_ObjectKey *key = 0;
+
+ ACE_NEW_RETURN (key,
+ TAO_ObjectKey (this->object_key_),
+ 0);
+
+ return key;
+}
+
+
+
+