summaryrefslogtreecommitdiff
path: root/TAO/tao/Valuetype/ValueFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Valuetype/ValueFactory.cpp')
-rw-r--r--TAO/tao/Valuetype/ValueFactory.cpp87
1 files changed, 87 insertions, 0 deletions
diff --git a/TAO/tao/Valuetype/ValueFactory.cpp b/TAO/tao/Valuetype/ValueFactory.cpp
new file mode 100644
index 00000000000..a03b7be5bc7
--- /dev/null
+++ b/TAO/tao/Valuetype/ValueFactory.cpp
@@ -0,0 +1,87 @@
+#include "tao/Valuetype/ValueFactory.h"
+#include "ace/Guard_T.h"
+
+ACE_RCSID (Valuetype,
+ ValueFactory,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+// Static operations in namespace CORBA.
+
+void
+CORBA::add_ref (CORBA::ValueFactoryBase *val)
+{
+ if (val)
+ {
+ val->_add_ref ();
+ }
+}
+
+void
+CORBA::remove_ref (CORBA::ValueFactoryBase *val)
+{
+ if (val)
+ {
+ val->_remove_ref ();
+ }
+}
+
+// ===========================================================
+
+CORBA::ValueFactoryBase::ValueFactoryBase (void)
+ : _tao_reference_count_ (1)
+{
+}
+
+CORBA::ValueFactoryBase::~ValueFactoryBase (void)
+{
+}
+
+void
+CORBA::ValueFactoryBase::_add_ref (void)
+{
+ ++this->_tao_reference_count_;
+}
+
+void
+CORBA::ValueFactoryBase::_remove_ref (void)
+{
+ CORBA::ULong const new_count = --this->_tao_reference_count_;
+
+ if (new_count == 0)
+ delete this;
+}
+
+// No-op. This should never be called, but it can't be pure virtual.
+CORBA::AbstractBase *
+CORBA::ValueFactoryBase::create_for_unmarshal_abstract (void)
+{
+ return 0;
+}
+
+// =============== Template Specializations =====================
+namespace TAO
+{
+ using namespace CORBA;
+
+ void
+ Value_Traits<ValueFactoryBase>::add_ref (ValueFactoryBase *p)
+ {
+ CORBA::add_ref (p);
+ }
+
+ void
+ Value_Traits<ValueFactoryBase>::remove_ref (ValueFactoryBase * p)
+ {
+ CORBA::remove_ref (p);
+ }
+
+ void
+ Value_Traits<ValueFactoryBase>::release (ValueFactoryBase * p)
+ {
+ CORBA::remove_ref (p);
+ }
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL