summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Factory/FactoryC_impl.cpp
blob: 7bd2c91de8d31a94985cf4a3a3f4343487e6d4f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "FactoryC_impl.h"

ACE_RCSID (Factory,
           FactoryC_impl,
           "$Id$")

OBV_FactoryTest::Value2*
Value2_init_impl::create_default (CORBA::ULong id)
{
  OBV_FactoryTest::Value2* ret_val = 0;
  ACE_NEW_RETURN (ret_val,
                  Value2_impl,
                  0);

  if (ret_val)
    {
      ret_val->id (id);
    }

  return ret_val;
}

OBV_FactoryTest::Value2*
Value2_init_impl::create (
    CORBA::ULong id,
    const OBV_FactoryTest::BaseValue::BV_Data & data
  )
{
  OBV_FactoryTest::Value2* ret_val = 0;
  ACE_NEW_RETURN (ret_val,
                  Value2_impl,
                  0);

  if (ret_val)
    {
      ret_val->id (id);
      ret_val->data (data);
    }

  return ret_val;
}

CORBA::ValueBase *
Value2_init_impl::create_for_unmarshal (void)
{
  OBV_FactoryTest::Value2* ret_val = 0;
  ACE_NEW_THROW_EX (ret_val,
                    Value2_impl,
                    CORBA::NO_MEMORY ());

  return ret_val;
}