summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/DynamicAny/DynValueBox_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/DynamicAny/DynValueBox_i.cpp')
-rw-r--r--ACE/TAO/tao/DynamicAny/DynValueBox_i.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/ACE/TAO/tao/DynamicAny/DynValueBox_i.cpp b/ACE/TAO/tao/DynamicAny/DynValueBox_i.cpp
new file mode 100644
index 00000000000..05ba084fdc3
--- /dev/null
+++ b/ACE/TAO/tao/DynamicAny/DynValueBox_i.cpp
@@ -0,0 +1,44 @@
+// $Id$
+
+#include "tao/DynamicAny/DynValueBox_i.h"
+
+ACE_RCSID (DynamicAny,
+ DynValueBox_i,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+TAO_DynValueBox_i::TAO_DynValueBox_i (void)
+{
+}
+
+TAO_DynValueBox_i::~TAO_DynValueBox_i (void)
+{
+}
+
+CORBA::Any *
+TAO_DynValueBox_i::get_boxed_value (void)
+{
+ throw ::CORBA::NO_IMPLEMENT ();
+}
+
+void
+TAO_DynValueBox_i::set_boxed_value (const CORBA::Any & /* boxed */)
+{
+ throw ::CORBA::NO_IMPLEMENT ();
+}
+
+DynamicAny::DynAny_ptr
+TAO_DynValueBox_i::get_boxed_value_as_dyn_any (void)
+{
+ throw ::CORBA::NO_IMPLEMENT ();
+}
+
+void
+TAO_DynValueBox_i::set_boxed_value_as_dyn_any (DynamicAny::DynAny_ptr /* boxed */)
+{
+ throw ::CORBA::NO_IMPLEMENT ();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+