summaryrefslogtreecommitdiff
path: root/TAO/tao/Pluggable.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Pluggable.i')
-rw-r--r--TAO/tao/Pluggable.i25
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/tao/Pluggable.i b/TAO/tao/Pluggable.i
new file mode 100644
index 00000000000..4fcf113b6e6
--- /dev/null
+++ b/TAO/tao/Pluggable.i
@@ -0,0 +1,25 @@
+// $Id$
+
+ACE_INLINE
+TAO_Profile::TAO_Profile (void)
+ : forward_to_ (0)
+{
+}
+
+ACE_INLINE void
+TAO_Profile::forward_to (TAO_MProfile *mprofiles)
+{
+ this->forward_to_ = mprofiles;
+}
+
+ACE_INLINE TAO_MProfile *
+TAO_Profile::forward_to (void)
+{
+ return this->forward_to_;
+}
+
+ACE_INLINE TAO_MProfile *
+TAO_Profile::forward_to_i (void)
+{
+ return this->forward_to_;
+}