summaryrefslogtreecommitdiff
path: root/ACE/ace/UUID.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-08-22 11:42:12 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-08-22 11:42:12 +0000
commit97930cb61775a189af86c17173dda39417acf9d5 (patch)
tree2bf18bcd50673f86485aa2e391ce6dd5e45f7a5d /ACE/ace/UUID.cpp
parente0ea806de96a9e6859d5a576f105cb750c21fd3d (diff)
downloadATCD-97930cb61775a189af86c17173dda39417acf9d5.tar.gz
Tue Aug 22 11:41:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/UUID.cpp')
-rw-r--r--ACE/ace/UUID.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/ACE/ace/UUID.cpp b/ACE/ace/UUID.cpp
index bbd01437437..9ea7f9961a3 100644
--- a/ACE/ace/UUID.cpp
+++ b/ACE/ace/UUID.cpp
@@ -83,6 +83,18 @@ namespace ACE_Utils
this->from_string_i (uuid_string);
}
+ UUID::UUID(const UUID &right)
+ : timeLow_ (right.timeLow_),
+ timeMid_ (right.timeMid_),
+ timeHiAndVersion_ (right.timeHiAndVersion_),
+ clockSeqHiAndReserved_ (right.clockSeqHiAndReserved_),
+ clockSeqLow_ (right.clockSeqLow_),
+ as_string_ (0)
+ {
+ ACE_NEW (node_,
+ UUID_node (*right.node_));
+ }
+
UUID::~UUID (void)
{
if (node_release_)