summaryrefslogtreecommitdiff
path: root/TAO/tao/Protocol_Factory.cpp
blob: 9fd5df93b81bb9bbac619beec227f66f5e3e0d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "tao/Protocol_Factory.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_Protocol_Factory::TAO_Protocol_Factory (CORBA::ULong tag)
  : tag_ (tag)
{
}

TAO_Protocol_Factory::~TAO_Protocol_Factory ()
{
}

CORBA::ULong
TAO_Protocol_Factory::tag () const
{
  return this->tag_;
}

TAO_END_VERSIONED_NAMESPACE_DECL