summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Factory/FactoryC_impl.cpp
blob: 22601c8537c21817e23b0a8c42d8ad28fc77ae02 (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
// $Id$

#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_RETURN (ret_val, 
                  Value2_impl, 
                  0);

  return ret_val;
}