summaryrefslogtreecommitdiff
path: root/TAO/tao/Argument.cpp
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2006-08-14 12:50:21 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2006-08-14 12:50:21 +0000
commita685dbd0e218572fdac32e7ab0d9ff3ea0e75a03 (patch)
tree9d76b7710d5f6320f4e3a3d958c0807374059250 /TAO/tao/Argument.cpp
parent881071ba13cadea26f4fdb105340f3c6f46e9d56 (diff)
downloadATCD-a685dbd0e218572fdac32e7ab0d9ff3ea0e75a03.tar.gz
ChangeLogTag: Mon Aug 14 12:49:11 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/Argument.cpp')
-rw-r--r--TAO/tao/Argument.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/TAO/tao/Argument.cpp b/TAO/tao/Argument.cpp
index d1819d1cc51..f888e2a5abc 100644
--- a/TAO/tao/Argument.cpp
+++ b/TAO/tao/Argument.cpp
@@ -2,6 +2,7 @@
// $Id$
#include "tao/Argument.h"
+#include "ace/OS_Memory.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
@@ -21,6 +22,12 @@ TAO::Argument::demarshal (TAO_InputCDR &)
return true;
}
+TAO::Argument*
+TAO::Argument::clone ()
+{
+ return 0;
+}
+
#if TAO_HAS_INTERCEPTORS == 1
void
@@ -54,4 +61,14 @@ TAO::RetArgument::mode (void) const
#endif /* TAO_HAS_INTERCEPTORS */
+TAO::Argument*
+TAO::Void_Return_Argument::clone (void)
+{
+ TAO::Argument* clone_arg;
+ ACE_NEW_RETURN (clone_arg,
+ Void_Return_Argument (),
+ 0);
+ return clone_arg;
+}
+
TAO_END_VERSIONED_NAMESPACE_DECL