summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP.i
blob: f04f67a3295e046f80c11ba866a6746ce77b3ace (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// This may look like C, but it's really -*- C++ -*-
//
// $Id$
//

ACE_INLINE
TAO_GIOP_LocateRequestHeader::TAO_GIOP_LocateRequestHeader (void)
  : request_id (0)
{
}

// ****************************************************************

ACE_INLINE
TAO_GIOP_Version::TAO_GIOP_Version (const TAO_GIOP_Version &src)
  : major (src.major),
    minor (src.minor)
{
}

ACE_INLINE
TAO_GIOP_Version::TAO_GIOP_Version (CORBA::Octet maj, CORBA::Octet min)
  : major (maj),
    minor (min)
{
}

ACE_INLINE
TAO_GIOP_Version::~TAO_GIOP_Version (void)
{
}

ACE_INLINE TAO_GIOP_Version &
TAO_GIOP_Version::operator= (const TAO_GIOP_Version &src)
{
  if (this == &src)
    return *this;

  this->major = src.major;
  this->minor = src.minor;
  return *this;
}

ACE_INLINE void
TAO_GIOP_Version::set_version (CORBA::Octet maj, CORBA::Octet min)
{
  this->major = maj;
  this->minor = min;
}

ACE_INLINE int
TAO_GIOP_Version::operator== (const TAO_GIOP_Version &src)
{
  return this->major == src.major && this->minor == src.minor;
}

ACE_INLINE int
TAO_GIOP_Version::operator!= (const TAO_GIOP_Version &src)
{
  return !(*this == src);
}

// ****************************************************************

ACE_INLINE void
TAO_GIOP_Message_State::reset (void)
{
  this->message_size = 0;
  this->current_offset = 0;
  this->more_fragments = 0;
  this->cdr.reset_contents ();
}

ACE_INLINE int
TAO_GIOP_Message_State::header_received (void) const
{
  return this->message_size != 0;
}