summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP_Message_State.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-23 11:19:08 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-23 11:19:08 +0000
commit915932d9128567204c20be8c4bc99cde63d8482f (patch)
tree605a6ed668c823322d999f25fdebb3becae47de7 /TAO/tao/GIOP_Message_State.inl
parentc3c8dfcada5b9728a1bc26bd05c466cf2eae9724 (diff)
downloadATCD-915932d9128567204c20be8c4bc99cde63d8482f.tar.gz
Mon Jul 23 11:18:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/GIOP_Message_State.inl')
-rw-r--r--TAO/tao/GIOP_Message_State.inl30
1 files changed, 29 insertions, 1 deletions
diff --git a/TAO/tao/GIOP_Message_State.inl b/TAO/tao/GIOP_Message_State.inl
index a91d573d232..d6ffb97a4d4 100644
--- a/TAO/tao/GIOP_Message_State.inl
+++ b/TAO/tao/GIOP_Message_State.inl
@@ -4,6 +4,17 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+ACE_INLINE
+TAO_GIOP_Message_State::TAO_GIOP_Message_State (void)
+ : giop_version_ (TAO_DEF_GIOP_MAJOR,
+ TAO_DEF_GIOP_MINOR),
+ byte_order_ (0),
+ message_type_ (0),
+ message_size_ (0),
+ more_fragments_ (0)
+{
+}
+
ACE_INLINE CORBA::ULong
TAO_GIOP_Message_State::message_size (void) const
{
@@ -25,13 +36,30 @@ TAO_GIOP_Message_State::byte_order (void) const
return this->byte_order_;
}
+ACE_INLINE CORBA::Octet
+TAO_GIOP_Message_State::message_type (void) const
+{
+ return this->message_type_;
+}
+
+ACE_INLINE CORBA::Octet
+TAO_GIOP_Message_State::more_fragments (void) const
+{
+ return this->more_fragments_;
+}
+
+ACE_INLINE TAO_GIOP_Message_Version const &
+TAO_GIOP_Message_State::giop_version (void) const
+{
+ return this->giop_version_;
+}
+
ACE_INLINE void
TAO_GIOP_Message_State::reset (void)
{
this->message_type_ = 0;
this->message_size_ = 0;
this->more_fragments_ = 0;
- this->missing_data_ = 0;
}
TAO_END_VERSIONED_NAMESPACE_DECL