summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-03-26 00:15:17 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-03-26 00:15:17 +0000
commit03ef1583127d1e97b5db26a7aac4c14a47c3ee4e (patch)
tree3a898af70ffbc66716b5ac755519bfe9b83f4969
parent06e0662f8a50838bb56922c36453bc554bb38597 (diff)
downloadATCD-03ef1583127d1e97b5db26a7aac4c14a47c3ee4e.tar.gz
ChangeLogTag: Mon Mar 24 18:15:51 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/tao/ChangeLog5
-rw-r--r--TAO/tao/Profile.cpp17
2 files changed, 22 insertions, 0 deletions
diff --git a/TAO/tao/ChangeLog b/TAO/tao/ChangeLog
index 796b6b977d7..b6af167f84e 100644
--- a/TAO/tao/ChangeLog
+++ b/TAO/tao/ChangeLog
@@ -1,3 +1,8 @@
+Tue Mar 25 18:16:05 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
+
+ * tao/Profile.cpp: Missed a definition of a constructor during the
+ merge.
+
Tue Mar 25 17:14:22 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* tao/Domain/DomainS.cpp: Fixed compile errors.
diff --git a/TAO/tao/Profile.cpp b/TAO/tao/Profile.cpp
index ee9f5d065cc..ecf64435e7d 100644
--- a/TAO/tao/Profile.cpp
+++ b/TAO/tao/Profile.cpp
@@ -35,6 +35,23 @@ TAO_Profile::TAO_Profile (CORBA::ULong tag,
{
}
+TAO_Profile::TAO_Profile (CORBA::ULong tag,
+ TAO_ORB_Core *orb_core,
+ const TAO_GIOP_Message_Version &version)
+ : version_ (version)
+ , are_policies_parsed_ (0)
+ , stub_ (0)
+ , policy_list_ (0)
+ , addressing_mode_ (0)
+ , tagged_profile_ (0)
+ , object_key_ ()
+ , tag_ (tag)
+ , orb_core_ (orb_core)
+ , forward_to_ (0)
+ , refcount_ (1)
+{
+}
+
TAO_Profile::~TAO_Profile (void)
{
if (this->tagged_profile_)