summaryrefslogtreecommitdiff
path: root/TAO/tao/Argument.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Argument.cpp')
-rw-r--r--TAO/tao/Argument.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tao/Argument.cpp b/TAO/tao/Argument.cpp
new file mode 100644
index 00000000000..a106ad6bb76
--- /dev/null
+++ b/TAO/tao/Argument.cpp
@@ -0,0 +1,33 @@
+
+// $Id$
+
+#include "tao/Argument.h"
+#include "tao/DynamicC.h"
+
+CORBA::Boolean
+TAO::Argument::marshal (TAO_OutputCDR &)
+{
+ return 1;
+}
+
+CORBA::Boolean
+TAO::Argument::demarshal (TAO_InputCDR &)
+{
+ return 1;
+}
+
+void
+TAO::Argument::interceptor_param (Dynamic::Parameter &)
+{
+}
+
+void
+TAO::Argument::interceptor_result (CORBA::Any *)
+{
+}
+
+CORBA::Boolean
+TAO::Argument::interceptor_replace (CORBA::Any &)
+{
+ return 1;
+}