OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / doc / mico / examples / obv / tricky / tricky_impl.cc
1
2 /*
3  * Implementations
4  */
5
6 #include "tricky.h"
7 #include "tricky_impl.h"
8
9 CORBA::ValueBase *
10 vt_factory::create_for_unmarshal ()
11 {
12   return new vt_impl;
13 }
14
15 CORBA::ValueBase *
16 base_factory::create_for_unmarshal ()
17 {
18   return new base_impl;
19 }
20
21 CORBA::ValueBase *
22 derived_factory::create_for_unmarshal ()
23 {
24   return new derived_impl;
25 }
26
27 CORBA::ValueBase *
28 node_factory::create_for_unmarshal ()
29 {
30   return new node_impl;
31 }