summaryrefslogtreecommitdiff
path: root/tao/Valuetype/AbstractBase_Invocation_Adapter.cpp
blob: 545f4c813d7eb566cb0284f8956a79ba78c75760 (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
//$Id$
#include "tao/Valuetype/AbstractBase_Invocation_Adapter.h"
#include "tao/Valuetype/AbstractBase.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  AbstractBase_Invocation_Adapter::AbstractBase_Invocation_Adapter (
      CORBA::AbstractBase_ptr target,
      Argument **args,
      int arg_number,
      const char *operation,
      size_t op_len,
      Collocation_Proxy_Broker *p,
      Invocation_Type type,
      Invocation_Mode mode)
    : Invocation_Adapter (target->equivalent_objref (),
                          args,
                          arg_number,
                          operation,
                          op_len,
                          p,
                          type,
                          mode)
  {
  }
} // End namespace TAO

TAO_END_VERSIONED_NAMESPACE_DECL